1
0
mirror of https://github.com/gryf/openstack.git synced 2025-12-17 03:20:25 +01:00
Files
PTC cb5a4268f3 Add VBox support to workshop Vagrantfile.
This should allow MacOS users spin up a VM too.
2018-11-08 10:16:22 -08:00

18 lines
400 B
Ruby

# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.ssh.forward_agent = true
config.vm.box = "centos/7"
config.vm.network "private_network", ip: "192.168.33.10"
config.vm.provider "libvirt" do |v|
v.memory = 8192
v.cpus = 4
v.storage :file, :size => '40G'
end
config.vm.provider "virtualbox" do |v|
v.memory = 8192
v.cpus = 4
end
end