0.8.0 • Published 12 months ago

@blitzm/gcp-kubernetes v0.8.0

Weekly downloads
59
License
Blitzm
Repository
-
Last release
12 months ago

Blitzm Cloud - GCP Kubernetes

@blitzm/gcp-kubernetes is a typescript library for simplifying the process of creating a GCP Kubernetes Cluster with a single managed node groups. It abstracts the complicated configurations to provider a simple input interface for Blitzm developers to deploy resources to the cloud platform with little or no domain knowledge of the provider.

Installation

This package can be installed using npm

npm install --save --save-exact @blitzm/gcp-kubernetes

Usage

import * as gcp from '@pulumi/gcp';
import { GCPKubernetes } from '@blitzm/gcp-kubernetes';

 const vpc = new gcp.compute.Network('vpc', {
    name: 'vpc',
  });

  const ip = new gcp.compute.Address('public-static-ip', {
    name: 'nginx-ingress',
  });

  const cluster = new GCPKubernetes('cluster', {
    vpc: vpc,
    nodeSize: 'n1-standard-1',
    nodeDiskGB: 30,
    minNodes: 1,
    maxNodes:3,
    certManager: {
      enabled: true,
      email: 'admin@blitzm.com',
    },
    nginxIngress: {
      enabled: true,
      loadBalancerIP: ip,
    },
  });

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

Blitzm

0.8.0

12 months ago

0.7.0

12 months ago

0.6.1

2 years ago

0.6.0

3 years ago

0.5.3

3 years ago

0.5.2

3 years ago

0.5.1

3 years ago

0.5.0

3 years ago

0.4.0

3 years ago

0.3.0

4 years ago

0.2.0

4 years ago

0.1.0

4 years ago