Adds support for separate etcd machines on terraform/openstack deployment (#1674)

This commit is contained in:
Pablo Moreno
2017-09-27 10:59:09 +01:00
committed by Matthew Mosesohn
parent 477afa8711
commit c819238da9
3 changed files with 102 additions and 3 deletions

View File

@@ -6,10 +6,22 @@ variable "number_of_k8s_masters" {
default = 2
}
variable "number_of_k8s_masters_no_etcd" {
default = 2
}
variable "number_of_etcd" {
default = 2
}
variable "number_of_k8s_masters_no_floating_ip" {
default = 2
}
variable "number_of_k8s_masters_no_floating_ip_no_etcd" {
default = 2
}
variable "number_of_k8s_nodes" {
default = 1
}
@@ -59,6 +71,10 @@ variable "flavor_k8s_node" {
default = 3
}
variable "flavor_etcd" {
default = 3
}
variable "flavor_gfs_node" {
default = 3
}