Skip to content
This repository has been archived by the owner on Mar 23, 2023. It is now read-only.

Latest commit

 

History

History
33 lines (22 loc) · 693 Bytes

README.md

File metadata and controls

33 lines (22 loc) · 693 Bytes

vagrant-cloudstack-simulator

Prerequisites

Using the prebuilt box

Create a Vagrantfile:

Vagrant.configure("2") do |config|
  config.vm.box = "cloudstack-simulator"
  config.vm.box_url = "https://dl.dropboxusercontent.com/u/4153969/PromptWorks/cloudstack-simulator.box"

  config.vm.network "private_network", ip: "10.0.123.101"

  config.vm.provider "virtualbox" do |vbox|
    vbox.memory = 2048
  end
end

and start the box:

$ vagrant up

Building

Use make. The entire build from scratch takes about 40 minutes, and creates a ~1.5GB box file.