Browse Source

Merge pull request #1418 from Abdelsalam-Abbas/fix_vagrantfile

make sure every instance is a node if user changed defaults
pull/1437/head
Spencer Smith 7 years ago
committed by GitHub
parent
commit
7a72b2d558
1 changed files with 3 additions and 2 deletions
  1. 5
      Vagrantfile

5
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

Loading…
Cancel
Save