2016-06-05 20:52:20 +00:00
|
|
|
variable "cluster_name" {
|
|
|
|
default = "example"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "number_of_k8s_masters" {
|
|
|
|
default = 2
|
|
|
|
}
|
|
|
|
|
2016-10-26 14:56:15 +00:00
|
|
|
variable "number_of_k8s_masters_no_floating_ip" {
|
|
|
|
default = 2
|
|
|
|
}
|
|
|
|
|
2016-06-05 20:52:20 +00:00
|
|
|
variable "number_of_k8s_nodes" {
|
|
|
|
default = 1
|
|
|
|
}
|
|
|
|
|
2016-10-26 14:56:15 +00:00
|
|
|
variable "number_of_k8s_nodes_no_floating_ip" {
|
|
|
|
default = 1
|
|
|
|
}
|
|
|
|
|
2016-11-11 03:59:46 +00:00
|
|
|
variable "number_of_gfs_nodes_no_floating_ip" {
|
|
|
|
default = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "gfs_volume_size_in_gb" {
|
|
|
|
default = 75
|
|
|
|
}
|
|
|
|
|
2016-06-05 20:52:20 +00:00
|
|
|
variable "public_key_path" {
|
|
|
|
description = "The path of the ssh pub key"
|
|
|
|
default = "~/.ssh/id_rsa.pub"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "image" {
|
|
|
|
description = "the image to use"
|
|
|
|
default = "ubuntu-14.04"
|
|
|
|
}
|
|
|
|
|
2016-11-11 03:59:46 +00:00
|
|
|
variable "image_gfs" {
|
|
|
|
description = "Glance image to use for GlusterFS"
|
|
|
|
default = "ubuntu-16.04"
|
|
|
|
}
|
|
|
|
|
2016-06-05 20:52:20 +00:00
|
|
|
variable "ssh_user" {
|
|
|
|
description = "used to fill out tags for ansible inventory"
|
|
|
|
default = "ubuntu"
|
|
|
|
}
|
|
|
|
|
2016-11-11 03:59:46 +00:00
|
|
|
variable "ssh_user_gfs" {
|
|
|
|
description = "used to fill out tags for ansible inventory"
|
|
|
|
default = "ubuntu"
|
|
|
|
}
|
|
|
|
|
2016-06-05 20:52:20 +00:00
|
|
|
variable "flavor_k8s_master" {
|
|
|
|
default = 3
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "flavor_k8s_node" {
|
|
|
|
default = 3
|
|
|
|
}
|
|
|
|
|
2016-11-11 03:59:46 +00:00
|
|
|
variable "flavor_gfs_node" {
|
|
|
|
default = 3
|
|
|
|
}
|
2016-06-05 20:52:20 +00:00
|
|
|
|
|
|
|
variable "network_name" {
|
|
|
|
description = "name of the internal network to use"
|
|
|
|
default = "internal"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "floatingip_pool" {
|
|
|
|
description = "name of the floating ip pool to use"
|
|
|
|
default = "external"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "username" {
|
|
|
|
description = "Your openstack username"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "password" {
|
|
|
|
description = "Your openstack password"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "tenant" {
|
|
|
|
description = "Your openstack tenant/project"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "auth_url" {
|
|
|
|
description = "Your openstack auth URL"
|
|
|
|
}
|