c59ea3016f
Added a development environment shortcut by way of Vagrantfiles for CentOS and Ubuntu; also updated README.rst to indicate usage. Change-Id: I561ecd6cede3c5cdb7605e368d2b031b05612133
29 lines
1012 B
Plaintext
29 lines
1012 B
Plaintext
Vagrant.configure("2") do |config|
|
|
config.vm.box = "centos/8"
|
|
config.vm.box_version = "1905.1"
|
|
config.vm.provider "virtualbox" do |vb|
|
|
vb.memory = "2048"
|
|
end
|
|
config.vm.provision "shell", inline: <<-SHELL
|
|
echo "export TERM=xterm">>/home/vagrant/.bashrc
|
|
echo "export TERM=xterm">>/root/.bashrc
|
|
dnf update -y
|
|
dnf install -y epel-release
|
|
yum-config-manager --disable epel
|
|
dnf install -y python3-devel gcc git vim
|
|
dnf install -y --enablerepo epel ansible
|
|
git clone https://opendev.org/openstack/validations-libs
|
|
git clone https://opendev.org/openstack/validations-common
|
|
pushd validations-libs
|
|
sudo -u vagrant pip3 install --user -r requirements.txt
|
|
python3 setup.py install
|
|
popd
|
|
pushd validations-common
|
|
sudo -u vagrant pip3 install --user -r requirements.txt
|
|
python3 setup.py install
|
|
popd
|
|
ln -s /usr/local/share/ansible/validations-playbooks /usr/share/ansible/validations-playbooks
|
|
mkdir -p /var/log/validations
|
|
SHELL
|
|
end
|