-
Notifications
You must be signed in to change notification settings - Fork 1
/
.kitchen.yml
62 lines (56 loc) · 1.77 KB
/
.kitchen.yml
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
---
provisioner:
name: ansible_playbook
roles_path: ./roles
modules_path: ./library
ansible_yum_repo: "https://download.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm"
ansible_verbose: true
ansible_verbosity: 3
platforms:
- name: ubuntu-14.04
driver_plugin: vagrant
driver:
box: opscode-ubuntu-14.04
box_url: https://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_ubuntu-14.04_chef-provisionerless.box
customize:
memory: 2048
cpus: 2
network:
- ["forwarded_port", {guest: 80, host: 8090}]
- ["private_network", {ip: "192.168.33.20"}]
- name: centos-7.1
driver_plugin: vagrant
driver:
box: centos-7.1
box_url: http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_centos-7.1_chef-provisionerless.box
customize:
memory: 2048
cpus: 2
network:
- ["forwarded_port", {guest: 80, host: 8080}]
- ["private_network", {ip: "192.168.33.10"}]
- name: centos-7.1-2
driver_plugin: vagrant
driver:
box: centos-7.1
box_url: http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_centos-7.1_chef-provisionerless.box
customize:
memory: 1024
cpus: 1
network:
- ["private_network", {ip: "192.168.33.30"}]
- name: ubuntu-14.04-1
driver_plugin: vagrant
driver:
box: opscode-ubuntu-14.04
box_url: https://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_ubuntu-14.04_chef-provisionerless.box
customize:
memory: 1024
cpus: 1
network:
- ["private_network", {ip: "192.168.33.40"}]
suites:
- name: vagrant
provisioner:
playbook: vagrant.yml
hosts: vagrant