forked from ansiwen/devstack-vagrant
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Vagrantfile
143 lines (118 loc) · 5.04 KB
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2" if not defined? VAGRANTFILE_API_VERSION
require 'yaml'
conf = File.file?('config.yaml') ? YAML.load_file('config.yaml') : {}
GIT_BASE = conf["local_git_repos"] ? "/repos" : "https://git.openstack.org"
LOCAL_CONF = conf["local_conf"] ? conf["local_conf"] : "local.conf.default"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.define "devstack-vm"
config.vm.hostname = "devstack-vm"
# Every Vagrant development environment requires a box. You can search for
# boxes at https://atlas.hashicorp.com/search.
config.vm.box = "ansiwen/devstack-base"
# Disable automatic box update checking. If you disable this, then
# boxes will only be checked for updates when the user runs
# `vagrant box outdated`. This is not recommended.
# config.vm.box_check_update = false
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine. In the example below,
# accessing "localhost:8080" will access port 80 on the guest machine.
config.vm.network "forwarded_port", guest: 80, host: 8080
# Create a private network, which allows host-only access to the machine
# using a specific IP.
#config.vm.network "private_network", ip: 192.168.73.10"
# Create a public network, which generally matched to bridged network.
# Bridged networks make the machine appear as another physical device on
# your network.
# config.vm.network "public_network"
# Share an additional folder to the guest VM. The first argument is
# the path on the host to the actual folder. The second argument is
# the path on the guest to mount the folder. And the optional third
# argument is a set of non-required options.
# config.vm.synced_folder "../data", "/vagrant_data"
#config.vm.synced_folder ".", "/vagrant", type: "nfs"
#config.vm.synced_folder ".", "/vagrant", type: "9p"
#config.vm.synced_folder ".", "/vagrant", disabled: true
# Provider-specific configuration so you can fine-tune various
# backing providers for Vagrant. These expose provider-specific options.
# Example for VirtualBox:
#
config.vm.provider "libvirt" do |domain, override|
domain.memory = 4096
domain.cpus = 2
domain.nested = true
# domain.volume_cache = 'none'
override.vm.synced_folder ".", "/vagrant", type: "nfs"
if conf["local_git_repos"]
override.vm.synced_folder conf["local_git_repos"], "/repos", type: "nfs"
end
end
config.vm.provider "virtualbox" do |vb, override|
# # Display the VirtualBox GUI when booting the machine
# vb.gui = true
#
# # Customize the amount of memory on the VM:
vb.memory = 4096
vb.cpus = 2
override.vm.synced_folder ".", "/vagrant"
if conf["local_git_repos"]
override.vm.synced_folder conf["local_git_repos"], "/repos"
end
end
## Provisioning
if conf["yum_repo"]
config.vm.provision "shell", inline: <<-SHELL
sed -i 's/^#baseurl/baseurl/' /etc/yum.repos.d/*
sed -i 's/^metalink/#metalink/' /etc/yum.repos.d/*
sed -i 's,http://download.fedoraproject.org/pub,#{conf["yum_repo"]},' /etc/yum.repos.d/*
SHELL
end
if Vagrant.has_plugin?("vagrant-proxyconf") && conf["http_proxy"]
config.proxy.http = conf["http_proxy"]
config.proxy.https = conf["http_proxy"]
config.proxy.no_proxy = "localhost,127.0.0.1"
config.proxy.no_proxy += ",#{conf["devpi_server"]}" if conf["devpi_server"]
config.vm.provision "shell", inline: <<-SHELL
dnf install -y git
git config --system url."http://github.com/".insteadOf git@github.com:
git config --system url."http://".insteadOf git://
SHELL
end
config.vm.provision "shell", inline: <<-SHELL
dnf install -y rsyslog joe yum-utils net-tools nfs-utils mlocate telnet sudo git dnf
mkdir -p /vagrant/.wheelhouse
cat >/etc/pip.conf <<PIPCONF
[global]
wheel-dir = /vagrant/.wheelhouse
find-links = file:///vargant/.wheelhouse
PIPCONF
SHELL
if conf["devpi_server"] && conf["devpi_port"] && conf["devpi_path"]
config.vm.provision "shell", inline: <<-SHELL
cat >>/etc/pip.conf <<PIPCONF
index-url = http://#{conf["devpi_server"]}:#{conf["devpi_port"]}/#{conf["devpi_path"]}
trusted-host = #{conf["devpi_server"]}
PIPCONF
SHELL
end
config.vm.provision "shell", inline: <<-SHELL
pip install -U pip wheel setuptools tox nose2
SHELL
config.vm.provision "shell", privileged: false, inline: <<-SHELL
chmod o+x .
git clone #{GIT_BASE}/openstack-dev/devstack
SHELL
config.vm.provision "file", source: LOCAL_CONF, destination: "devstack/local.conf"
config.vm.provision "shell", privileged: false, inline: <<-SHELL
cd devstack
export GIT_BASE=#{GIT_BASE}
export PIP_FIND_LINKS=file:///vagrant/.wheelhouse
export PIP_WHEEL_DIR=/vagrant/.wheelhouse
./stack.sh |& tee /tmp/stack.log
SHELL
config.vm.provision "shell", inline: <<-SHELL
find /root/.cache/pip/wheels -type f -name *.whl -exec cp -n \\{\\} /vagrant/.wheelhouse \\; 2>/dev/null
systemctl enable mariadb rabbitmq-server httpd
SHELL
end