-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.kitchen.yml
42 lines (39 loc) · 862 Bytes
/
.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
---
driver:
name: vagrant
customize:
memory: 1024
network:
- ["private_network", { type: "dhcp" }]
provisioner:
name: ansible_playbook
hosts: test-kitchen
requirements_path: requirements.yml
require_pip: true
require_ansible_repo: false
ansible_version: 2.3.0.0
ansible_verbose: false
ansible_verbosity: 2
ansible_diff: true
ansible_extra_flags: <%= ENV['ANSIBLE_EXTRA_FLAGS'] %>
ignore_paths_from_root:
- .kitchen
platforms:
- name: ubuntu-14.04
driver:
box: ubuntu/trusty64
- name: ubuntu-16.04
driver:
box: ubuntu/xenial64
- name: centos-7.2
driver:
box: bento/centos-7.2
suites:
- name: node0
driver:
network:
- ["private_network", { ip: "172.29.129.110" }]
- name: node1
driver:
network:
- ["private_network", { ip: "172.29.129.120" }]