monasca-vagrant/ds-build/Vagrantfile

43 lines
1.0 KiB
Ruby

# -*- mode: ruby -*-
# vi: set ft=ruby :
# Set working dir to root of repo
Dir.chdir ".."
VAGRANTFILE_API_VERSION = "2" # Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# Settings for all vms
config.berkshelf.enabled = true
# Handle local proxy settings
if Vagrant.has_plugin?("vagrant-proxyconf")
if ENV["http_proxy"]
config.proxy.http = ENV["http_proxy"]
end
if ENV["https_proxy"]
config.proxy.https = ENV["https_proxy"]
end
if ENV["no_proxy"]
config.proxy.no_proxy = ENV["no_proxy"]
end
end
config.vm.define "devstack" do |ds|
ds.vm.hostname = "devstack"
ds.vm.box = "ubuntu/trusty64"
ds.vm.network :private_network, ip: "192.168.10.5"
ds.vm.provider "virtualbox" do |vb|
vb.memory = 5280
vb.cpus = 4
end
ds.vm.provision :chef_solo do |chef|
chef.roles_path = "roles"
chef.add_role "Devstack-Build"
chef.arguments = '--force-formatter'
end
end
end