-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.kitchen.yml
94 lines (84 loc) · 2.27 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
---
driver:
name: vagrant
transport:
name: rsync
provisioner:
hosts: test-kitchen
name: ansible_playbook
require_chef_for_busser: false
require_ruby_for_busser: false
ansible_verbosity: 1
ansible_verbose: true
ansible_extra_flags: <%= ENV['ANSIBLE_EXTRA_FLAGS'] %>
http_proxy: <%= ENV['ANSIBLE_PROXY'] %>
idempotency_test: true
additional_copy_path:
- extra_modules
- filter_plugins
- extra_roles
ansible_vault_password_file: <%= File.expand_path(ENV['ANSIBLE_VAULT_PASSWORD_FILE'] || '') %>
platforms:
- name: freebsd-10.3-amd64
driver:
box: mitsuruy/ansible-freebsd-10.3-amd64
box_check_update: false
driver_config:
ssh:
shell: '/bin/sh'
provisioner:
extra_vars:
ansible_python_interpreter: '/usr/local/bin/python'
- name: openbsd-6.0-amd64
driver:
box: mitsuruy/ansible-openbsd-6.0-amd64
box_check_update: false
driver_config:
ssh:
shell: '/bin/sh'
provisioner:
extra_vars:
ansible_python_interpreter: '/usr/local/bin/python'
- name: openbsd-6.1-amd64
driver:
box: mitsuruy/ansible-openbsd-6.1-amd64
box_check_update: false
driver_config:
ssh:
shell: '/bin/sh'
provisioner:
extra_vars:
ansible_python_interpreter: '/usr/local/bin/python'
- name: ubuntu-14.04-amd64
driver:
box: mitsuruy/ansible-ubuntu-14.04-amd64
box_check_update: false
- name: ubuntu-16.04-amd64
driver:
box: mitsuruy/ansible-ubuntu-16.04-amd64
box_check_update: false
- name: centos-7.3-x86_64
driver:
box: mitsuruy/ansible-centos-7.3-x86_64
box_check_update: false
- name: debian-8-amd64
driver:
box: mitsuruy/ansible-debian-8-amd64
box_check_update: false
suites:
- name: default
provisioner:
name: ansible_playbook
playbook: tests/serverspec/default.yml
verifier:
name: shell
command: rspec -c -f d -I tests/serverspec tests/serverspec/default_spec.rb
- name: empty_aliases
provisioner:
name: ansible_playbook
playbook: tests/serverspec/empty_aliases.yml
verifier:
name: shell
command: rspec -c -f d -I tests/serverspec tests/serverspec/empty_aliases_spec.rb
includes:
- freebsd-10.3-amd64