forked from bdellegrazie/ansible-role-postgres_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
86 lines (81 loc) · 2.05 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
---
driver:
name: docker_cli
transport:
name: docker_cli
provisioner:
name: ansible_playbook
hosts: test-kitchen
require_chef_for_busser: false
require_ruby_for_busser: false
require_ansible_repo: false
requirements_path: test/integration/requirements.yml
ansible_verbose: false
ansible_verbosity: :warn
ansible_version: latest
ansible_host_key_checking: false
ansible_extra_flags: <%= ENV['ANSIBLE_EXTRA_FLAGS'] %>
update_package_repos: false
group_vars_path: test/integration/group_vars
env_vars:
ANSIBLE_FORCE_COLOR: 1
ignore_paths_from_root:
- .bundle
- .kitchen
- .git
- tests
- vendor
idempotency_test: true
platforms:
- name: centos-6
driver_config:
platform: centos
image: geerlingguy/docker-centos6-ansible:latest
privileged: true
command: /sbin/init
- name: centos-7
driver_config:
platform: centos
image: geerlingguy/docker-centos7-ansible:latest
privileged: true
volume:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
command: /usr/lib/systemd/systemd
- name: debian-8
driver_config:
platform: debian
image: bdellegrazie/docker-debian8-ansible:latest
privileged: true
volume:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
command: /lib/systemd/systemd
- name: ubuntu-16.04
driver_config:
platform: ubuntu
image: bdellegrazie/docker-ubuntu1604-ansible:latest
privileged: true
#security_opt: seccomp=unconfined
volume:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
command: /lib/systemd/systemd
stop_signal: SIGRTMIN+3
tmpfs:
- /run
- /run/lock
- name: fedora-25
driver_config:
platform: rhel
image: bdellegrazie/docker-fedora25-ansible:latest
privileged: true
volume:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
command: /usr/lib/systemd/systemd
suites:
- name: default
verifier:
default_path: test/integration/default/serverspec
verifier:
name: serverspec
remote_exec: false
patterns:
- '**/*_spec.rb'