Skip to content
This repository was archived by the owner on Jul 11, 2019. It is now read-only.
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

@tima

Description

@tima

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.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions