Disabled node3 by default

This commit is contained in:
jprdonnelly
2019-08-12 10:25:55 -04:00
parent d72e44a052
commit c88b28c958

28
Vagrantfile vendored
View File

@@ -28,22 +28,22 @@ servers = [
:cpu => "2",
},
{
:name => "k8s-node3",
:type => "node",
:name => "k8s-nfs",
:type => "nfs",
:box => "ubuntu/bionic64",
:eth1 => "192.168.205.13",
:mem => "4096",
:cpu => "2",
},
:eth1 => "192.168.205.14",
:mem => "2048",
:cpu => "1"
},
# Uncomment section below to enable a 3rd worker node.
{
:name => "k8s-nfs",
:type => "nfs",
:box => "ubuntu/bionic64",
:eth1 => "192.168.205.14",
:mem => "2048",
:cpu => "1"
}
# {
# :name => "k8s-node3",
# :type => "node",
# :box => "ubuntu/bionic64",
# :eth1 => "192.168.205.13",
# :mem => "4096",
# :cpu => "2",
# }
]
$configureBox = <<-SCRIPT