luckybuyer / kube-simple

deploy kubernetes with peace
Other
0 stars 2 forks source link

kube-simple

This repo contains a list of Terraform modules to deploy kubernetes.

Goals:

Project Structure

The project is divided into 2 parts:

To get the highest level of customization, use modules to make rolling out your own solutions easier.

To quickly setup a cluster, try integrated.

Usage

Simply reference us in your main.tf:

module "cloudconfig" {
  source = "github.com/luckybuyer/kube-simple//modules/cloudconfig"
  # variables goes here
}

Note the double-slash is required. Then:

# get dependencies
$ terraform get
# see what's going to happen
$ terraform plan
# and make it happen
$ terraform apply