2019-01-31 15:24:36 +00:00
|
|
|
variable "cluster_name" {
|
|
|
|
default = "kubespray"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "packet_project_id" {
|
|
|
|
description = "Your Packet project ID. See https://support.packet.com/kb/articles/api-integrations"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "operating_system" {
|
|
|
|
default = "ubuntu_16_04"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "public_key_path" {
|
|
|
|
description = "The path of the ssh pub key"
|
|
|
|
default = "~/.ssh/id_rsa.pub"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "billing_cycle" {
|
|
|
|
default = "hourly"
|
|
|
|
}
|
|
|
|
|
2019-04-25 07:40:46 +00:00
|
|
|
variable "facility" {
|
|
|
|
default = "dfw2"
|
2019-01-31 15:24:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "plan_k8s_masters" {
|
|
|
|
default = "c2.medium.x86"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "plan_k8s_masters_no_etcd" {
|
|
|
|
default = "c2.medium.x86"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "plan_etcd" {
|
|
|
|
default = "c2.medium.x86"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "plan_k8s_nodes" {
|
|
|
|
default = "c2.medium.x86"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "number_of_k8s_masters" {
|
|
|
|
default = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "number_of_k8s_masters_no_etcd" {
|
|
|
|
default = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "number_of_etcd" {
|
|
|
|
default = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "number_of_k8s_nodes" {
|
|
|
|
default = 0
|
|
|
|
}
|
2019-10-29 07:02:42 +00:00
|
|
|
|