forked from vkhatri/chef-filebeat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.dokken.yml
124 lines (108 loc) · 3.03 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
attributes:
apt:
confd:
install_recommends: false
platforms:
- name: ubuntu14
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
- name: ubuntu16
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: debian8
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: debian9
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: centos6
driver:
image: centos:6.9
pid_one_command: /sbin/init
platform: rhel
intermediate_instructions:
- RUN yum install -y net-tools initscripts which curl
- name: centos7
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: fedora26
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
- name: amazon2
driver:
image: amazonlinux:2
pid_one_command: /usr/lib/systemd/systemd
platform: amazon
intermediate_instructions:
- RUN yum install -y net-tools initscripts
suites:
- name: chef13
driver:
chef_version: 13.11.3
verifier:
inspec_tests:
- test/smoke/v6
run_list:
- recipe[filebeat_test::defaultv6]
- name: chef14
driver:
chef_version: 14.5.33
verifier:
inspec_tests:
- test/smoke/v6
run_list:
- recipe[filebeat_test::defaultv6]
- name: chef14runit
driver:
chef_version: 14.5.33
verifier:
inspec_tests:
- test/smoke/v6runit
run_list:
- recipe[filebeat_test::defaultv6runit]
- name: chef14preview
driver:
chef_version: 14.5.33
run_list:
- recipe[filebeat_test::defaultv6preview]