-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy path.kitchen.yml
49 lines (45 loc) · 988 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
43
44
45
46
47
48
49
---
driver:
name: vagrant
provisioner:
name: ansible_playbook
hosts: test-kitchen
requirements_path: requirements.yml
require_pip: true
require_ansible_repo: false
ansible_version: 2.6.2.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:
customize:
memory: 1024
network:
- ["private_network", { ip: "172.29.129.11" }]
- name: node1
driver:
network:
- ["private_network", { ip: "172.29.129.12" }]
- name: node0.12.x
driver:
customize:
memory: 1024
network:
- ["private_network", { ip: "172.29.129.21" }]
transport:
max_ssh_sessions: 4