ansible-php/Vagrantfile

59 lines
2.1 KiB
Plaintext
Raw Normal View History

2015-07-23 21:35:25 +07:00
# -*- mode: ruby -*-
# vi: set ft=ruby :
# vi: set tabstop=2 :
# vi: set shiftwidth=2 :
Vagrant.configure("2") do |config|
2017-06-06 21:27:11 +07:00
vms_debian = [
{ :name => "debian-stretch-php70", :box => "debian/stretch64", :vars => { }},
2018-03-18 23:28:57 +07:00
{ :name => "debian-stretch-php71", :box => "debian/stretch64", :vars => { "php_version": '7.1' }},
2018-03-19 01:30:21 +07:00
{ :name => "debian-stretch-php72", :box => "debian/stretch64", :vars => { "php_version": '7.2' }},
{ :name => "ubuntu-xenial-php70", :box => "ubuntu/xenial64", :vars => { }},
{ :name => "ubuntu-bionic-php72", :box => "ubuntu/bionic64", :vars => { }},
2015-07-23 21:35:25 +07:00
]
2017-06-06 21:27:11 +07:00
conts = [
{ :name => "docker-debian-stretch-php70", :docker => "hanxhx/vagrant-ansible:debian9", :vars => { }},
2018-03-18 23:28:57 +07:00
{ :name => "docker-debian-stretch-php71", :docker => "hanxhx/vagrant-ansible:debian9", :vars => { "php_version": '7.1' }},
2018-03-19 01:30:21 +07:00
{ :name => "docker-debian-stretch-php72", :docker => "hanxhx/vagrant-ansible:debian9", :vars => { "php_version": '7.2' }},
{ :name => "docker-ubuntu-xenial-php70", :docker => "hanxhx/vagrant-ansible:16.04", :vars => { }},
{ :name => "docker-ubuntu-bionic-php72", :docker => "hanxhx/vagrant-ansible:18.04", :vars => { }},
2017-06-06 21:27:11 +07:00
]
2015-07-23 21:35:25 +07:00
2017-06-06 21:27:11 +07:00
config.vm.network "private_network", type: "dhcp"
2015-07-23 21:35:25 +07:00
2017-06-06 21:27:11 +07:00
conts.each do |opts|
config.vm.define opts[:name] do |m|
m.vm.provider "docker" do |d|
d.image = opts[:docker]
d.remains_running = true
d.has_ssh = true
end
2015-07-23 21:35:25 +07:00
m.vm.provision "ansible" do |ansible|
ansible.playbook = "tests/test.yml"
ansible.verbose = 'vv'
2017-11-22 22:28:35 +07:00
ansible.become = true
2017-06-06 21:27:11 +07:00
ansible.extra_vars = opts[:vars]
end
end
end
vms_debian.each do |opts|
config.vm.define opts[:name] do |m|
m.vm.box = opts[:box]
m.vm.provider "virtualbox" do |v|
v.cpus = 1
v.memory = 256
2015-07-23 21:35:25 +07:00
end
2018-03-19 01:30:21 +07:00
m.vm.provision "shell", inline: "apt-get update && apt-get install -y ifupdown python"
m.vm.provision "ansible" do |ansible|
ansible.playbook = "tests/test.yml"
ansible.verbose = 'vv'
ansible.become = true
ansible.extra_vars = opts[:vars]
end
2015-07-23 21:35:25 +07:00
end
end
end