Skip to content
Snippets Groups Projects
Commit 7a72b2d5 authored by Spencer Smith's avatar Spencer Smith Committed by GitHub
Browse files

Merge pull request #1418 from Abdelsalam-Abbas/fix_vagrantfile

make sure every instance is a node if user changed defaults
parents c75b21a5 e7f79453
No related branches found
No related tags found
No related merge requests found
...@@ -30,8 +30,6 @@ $os = "ubuntu" ...@@ -30,8 +30,6 @@ $os = "ubuntu"
$etcd_instances = $num_instances $etcd_instances = $num_instances
# The first two nodes are masters # The first two nodes are masters
$kube_master_instances = $num_instances == 1 ? $num_instances : ($num_instances - 1) $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" $local_release_dir = "/vagrant/temp"
host_vars = {} host_vars = {}
...@@ -40,6 +38,9 @@ if File.exist?(CONFIG) ...@@ -40,6 +38,9 @@ if File.exist?(CONFIG)
require CONFIG require CONFIG
end end
# All nodes are kube nodes
$kube_node_instances = $num_instances
$box = SUPPORTED_OS[$os][:box] $box = SUPPORTED_OS[$os][:box]
# if $inventory is not set, try to use example # if $inventory is not set, try to use example
$inventory = File.join(File.dirname(__FILE__), "inventory") if ! $inventory $inventory = File.join(File.dirname(__FILE__), "inventory") if ! $inventory
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment