From e7f794531eebb8481e21cc66d3899a52e0f727df Mon Sep 17 00:00:00 2001 From: Abdelsalam Abbas Date: Fri, 7 Jul 2017 09:20:14 +0200 Subject: [PATCH] make sure every instance is a node if user changed defauls of num_instances --- Vagrantfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index ab8073280..09419aa37 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -30,8 +30,6 @@ $os = "ubuntu" $etcd_instances = $num_instances # The first two nodes are masters $kube_master_instances = $num_instances == 1 ? $num_instances : ($num_instances - 1) -# All nodes are kube nodes -$kube_node_instances = $num_instances $local_release_dir = "/vagrant/temp" host_vars = {} @@ -40,6 +38,9 @@ if File.exist?(CONFIG) require CONFIG end +# All nodes are kube nodes +$kube_node_instances = $num_instances + $box = SUPPORTED_OS[$os][:box] # if $inventory is not set, try to use example $inventory = File.join(File.dirname(__FILE__), "inventory") if ! $inventory