-
-
Save xiaoruiguo/ca54a2c52a091b982584f803bd72e652 to your computer and use it in GitHub Desktop.
CloudStack simulator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment