mirror of
https://github.com/gryf/openstack.git
synced 2025-12-17 11:30:24 +01:00
Open-source the OpenStack DB migration scripts and workshop
This commit is contained in:
13
migration-scripts/migration-workshop/Vagrantfile
vendored
Normal file
13
migration-scripts/migration-workshop/Vagrantfile
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
# -*- 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
|
||||
end
|
||||
Reference in New Issue
Block a user