# -*- 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! unless Vagrant.has_plugin?("vagrant-berkshelf") raise "The needed plugin vagrant-berkshelf is not available. Install it by calling 'vagrant plugin install vagrant-berkshelf'." end Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # Settings for all vms config.berkshelf.enabled = true if Vagrant.has_plugin?("vagrant-cachier") config.cache.scope = :box end # 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 = 7180 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