Provision k8s cluster with Kubespray

This commit is contained in:
Paul-Henri Froidmont 2019-04-04 02:25:38 +02:00
parent 2f9be424d3
commit d1db285cf0
13 changed files with 108 additions and 239 deletions

View file

@ -7,33 +7,21 @@ variable "architecture" {
}
variable "image" {
default = "ubuntu-bionic-k8s"
}
variable "mini_image" {
default = "Ubuntu Mini Xenial 25G"
default = "Ubuntu Bionic"
}
variable "master_instance_type" {
default = "START1-S"
default = "DEV1-S"
}
variable "master_instance_count" {
default = 3
default = 1
}
variable "proxy_instance_type" {
default = "START1-S"
variable "node_instance_type" {
default = "DEV1-S"
}
variable "worker_instance_type" {
default = "START1-S"
}
variable "worker_volume_size" {
default = 100
}
variable "worker_instance_count" {
default = 3
variable "node_instance_count" {
default = 2
}