mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 05:36:59 +01:00
Provision k8s cluster with Kubespray
This commit is contained in:
parent
2f9be424d3
commit
d1db285cf0
13 changed files with 108 additions and 239 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue