This repository has been archived by the owner on Nov 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 55
/
.kitchen.dokken.yml
124 lines (110 loc) · 3.15 KB
/
.kitchen.dokken.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
---
driver:
name: dokken
privileged: true
transport:
name: dokken
verifier:
name: inspec
provisioner:
name: dokken
log_file: "/tmp/chef-client.log"
environment_path: test/environments
data_bags_path: test/databags
nodes_path: test/nodes
attributes:
apt:
confd:
install_recommends: false
icinga2:
ignore_version: true
# temp fix
disable_conf_d: false
platforms:
- name: ubuntu-1404
driver:
image: ubuntu:14.04
pid_one_command: /sbin/init
intermediate_instructions:
- RUN /usr/bin/apt-get update -qq
- RUN /usr/bin/apt-get install -y net-tools apt-transport-https initscripts procps lsb-release curl gnupg
attributes:
icinga2-test-mysql-instance:
service_manager: sysvinit
- name: ubuntu-1604
driver:
image: ubuntu:16.04
pid_one_command: /bin/systemd
intermediate_instructions:
- RUN /usr/bin/apt-get update -qq
- RUN /usr/bin/apt-get install -y net-tools apt-transport-https initscripts procps lsb-release curl gnupg
- name: ubuntu-1804
driver:
image: dokken/ubuntu-18.04
pid_one_command: /bin/systemd
intermediate_instructions:
- RUN /usr/bin/apt-get update -qq
- name: debian-8
driver:
image: debian:8.9
pid_one_command: /sbin/init
intermediate_instructions:
- RUN /usr/bin/apt-get update -qq
- RUN /usr/bin/apt-get install -y net-tools apt-transport-https initscripts procps lsb-release curl gnupg
- name: debian-9
driver:
image: dokken/debian-9
pid_one_command: /bin/systemd
intermediate_instructions:
- RUN /usr/bin/apt-get update -qq
- RUN /usr/bin/apt-get install -y net-tools apt-transport-https initscripts procps lsb-release curl gnupg
- name: centos-6
driver:
image: centos:6.9
pid_one_command: /sbin/init
platform: rhel
intermediate_instructions:
- RUN yum install -y net-tools initscripts which curl
attributes:
icinga2-test-mysql-instance:
service_manager: sysvinit
- name: centos-7
driver:
image: centos:7
pid_one_command: /usr/lib/systemd/systemd
platform: rhel
intermediate_instructions:
- RUN yum install -y net-tools initscripts systemd-sysv which lsof curl
- name: fedora-26
driver:
image: fedora:26
pid_one_command: /usr/lib/systemd/systemd
platform: rhel
intermediate_instructions:
- RUN yum install -y net-tools initscripts systemd-sysv which lsof curl
- name: amazon
driver:
image: amazonlinux:2017.03
pid_one_command: /sbin/init
platform: amazon
intermediate_instructions:
- RUN yum install -y net-tools initscripts which
suites:
- name: chef12server
driver:
chef_version: 12.21.4
verifier:
inspec_tests:
- test/smoke/server
run_list:
- recipe[icinga2::default]
- recipe[icinga2-test::default]
- name: chef13server
driver:
chef_version: 13.3.42
verifier:
inspec_tests:
- test/smoke/server
run_list:
- recipe[icinga2::default]
- recipe[icinga2-test::default]