f106bf5bc4
Squashed commits: [f9355ea
] Swap order in which we reload docker/socket [2ca6819
] Reload docker.socket after installing flannel on coreos Workaround for #569 [9f976e5
] Vagrantfile: setup proxy inside virtual machines In corporate networks, it is good to pre-configure proxy variables. [9d7142f
] Vagrantfile: use Ubuntu 16.04 LTS Use recent supported version of Ubuntu for local development setup with Vagrant. [50f77cc
] Add CI test layouts * Drop Wily from test matrix * Replace the Wily cases dropped with extra cases to test separate roles deployment Signed-off-by: Bogdan Dobrelya <bdobrelia@mirantis.com> [03e162b
] Update OWNERS [c7b00ca
] Use tar+register instead of copy/slurp for distributing tokens and certs Related bug: https://github.com/ansible/ansible/issues/15405 Uses tar and register because synchronize module cannot sudo on the remote side correctly and copy is too slow. This patch dramatically cuts down the number of tasks to process for cert synchronization. [2778ac6
] Add new var skip_dnsmasq_k8s If skip_dnsmasq is set, it will still not set up dnsmasq k8s pod. This enables independent setup of resolvconf section before kubelet is up.
69 lines
1.1 KiB
HCL
69 lines
1.1 KiB
HCL
variable "cluster_name" {
|
|
default = "example"
|
|
}
|
|
|
|
variable "number_of_k8s_masters" {
|
|
default = 2
|
|
}
|
|
|
|
variable "number_of_k8s_masters_no_floating_ip" {
|
|
default = 2
|
|
}
|
|
|
|
variable "number_of_k8s_nodes" {
|
|
default = 1
|
|
}
|
|
|
|
variable "number_of_k8s_nodes_no_floating_ip" {
|
|
default = 1
|
|
}
|
|
|
|
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"
|
|
}
|
|
|
|
variable "ssh_user" {
|
|
description = "used to fill out tags for ansible inventory"
|
|
default = "ubuntu"
|
|
}
|
|
|
|
variable "flavor_k8s_master" {
|
|
default = 3
|
|
}
|
|
|
|
variable "flavor_k8s_node" {
|
|
default = 3
|
|
}
|
|
|
|
|
|
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"
|
|
}
|