Skip to content
This repository was archived by the owner on Jul 11, 2019. It is now read-only.

Implement an Ubuntu box in the Vagrantfile for exercising multi-OS scenarios #280

Open
tima opened this issue Feb 16, 2018 · 1 comment
Open

Comments

@tima
Copy link
Collaborator

tima commented Feb 16, 2018

In order to support multi-os examples, the Vagrantfile needs a Ubuntu machine. It used to at one point:

cluster.vm.define "node-4" do |config|
  config.vm.box = "ubuntu/trusty64"
  config.ssh.insert_key = false
  config.vm.provider :virtualbox do |vb, override|
    vb.customize ["modifyvm", :id, "--memory", "256"]
    vb.customize ["modifyvm", :id, "--cpus", "1"]
  end
  config.vm.hostname = "node-4"
  config.vm.network :private_network, ip: "10.42.0.9"
end

In addition this node should be added to the static inventory file in the "web" group.

Dependent on #268 getting merged.

@tima tima changed the title Implement an Ubuntu box in the Vagrantfile Implement an Ubuntu box in the Vagrantfile for exercising multi-OS scenarios Feb 16, 2018
@aoyawale
Copy link

would something like this work?



#machine.vm.box = "ubuntu/precise64"

#machine.vm.box = "debian/jessie64"

#machine.vm.box = "debian/wheezy64

then you just comment out the one you need.

# for free to subscribe to this conversation on GitHub. Already have an account? #.
Projects
None yet
Development

No branches or pull requests

2 participants