Skip to content

Commit

Permalink
Merge pull request #128 from unclejack/use_linked_clones
Browse files Browse the repository at this point in the history
cluster/Vagrantfile: use linked clones
  • Loading branch information
neelimamukiri authored May 3, 2017
2 parents 1a4b3e2 + c9b7278 commit 9e85ab5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cluster/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,11 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
num_nodes.times do |n|
node_name = node_names[n]
node_addr = node_ips[n]

config.vm.provider 'virtualbox' do |v|
v.linked_clone = true if Vagrant::VERSION >= "1.8"
end

config.vm.define vm_name = node_name do |c|
if node_os == RHEL
# Download rhel7.2 box from https://access.redhat.com/downloads/content/293/ver=2/rhel---7/2.0.0/x86_64/product-software
Expand Down

0 comments on commit 9e85ab5

Please sign in to comment.