Skip to content
Snippets Groups Projects
Commit f81bafa0 authored by Peter Metz's avatar Peter Metz Committed by Kubernetes Prow Robot
Browse files

feat(vagrant/virtualbox): adds parameter to resize vbox disks (#4231)

Useful if the default 20GB is not enough in cases where you are using
the local path provisioner of rancher for example
parent 94892ab3
No related branches found
No related tags found
No related merge requests found
......@@ -50,6 +50,8 @@ $kube_node_instances = $num_instances
$kube_node_instances_with_disks = false
$kube_node_instances_with_disks_size = "20G"
$kube_node_instances_with_disks_number = 2
$override_disk_size = false
$disk_size = "20GB"
$playbook = "cluster.yml"
......@@ -97,6 +99,13 @@ Vagrant.configure("2") do |config|
# always use Vagrants insecure key
config.ssh.insert_key = false
if ($override_disk_size)
unless Vagrant.has_plugin?("vagrant-disksize")
system "vagrant plugin install vagrant-disksize"
end
config.disksize.size = $disk_size
end
(1..$num_instances).each do |i|
config.vm.define vm_name = "%s-%01d" % [$instance_name_prefix, i] do |node|
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment