We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2985b12 commit c38cf5dCopy full SHA for c38cf5d
Vagrantfile
@@ -61,9 +61,9 @@ $multi_networking ||= "False"
61
$download_run_once ||= "True"
62
$download_force_cache ||= "False"
63
# The first three nodes are etcd servers
64
-$etcd_instances ||= $num_instances
+$etcd_instances ||= [$num_instances, 3].min
65
# The first two nodes are kube masters
66
-$kube_master_instances ||= $num_instances == 1 ? $num_instances : ($num_instances - 1)
+$kube_master_instances ||= [$num_instances, 2].min
67
# All nodes are kube nodes
68
$kube_node_instances ||= $num_instances
69
# The following only works when using the libvirt provider
0 commit comments