Fix vagrant custom instance name prefix

This commit is contained in:
Andrey Sokolov 2016-08-19 20:45:18 +06:00
parent 5488571108
commit 9339903a85

6
Vagrantfile vendored
View file

@ -100,11 +100,11 @@ Vagrant.configure("2") do |config|
#ansible.tags = ['download'] #ansible.tags = ['download']
ansible.groups = { ansible.groups = {
# The first three nodes should be etcd servers # The first three nodes should be etcd servers
"etcd" => ["k8s-0[1:3]"], "etcd" => ["#{$instance_name_prefix}-0[1:3]"],
# The first two nodes should be masters # The first two nodes should be masters
"kube-master" => ["k8s-0[1:2]"], "kube-master" => ["#{$instance_name_prefix}-0[1:2]"],
# all nodes should be kube nodes # all nodes should be kube nodes
"kube-node" => ["k8s-0[1:#{$num_instances}]"], "kube-node" => ["#{$instance_name_prefix}-0[1:#{$num_instances}]"],
"k8s-cluster:children" => ["kube-master", "kube-node"], "k8s-cluster:children" => ["kube-master", "kube-node"],
} }
end end