-
Notifications
You must be signed in to change notification settings - Fork 1
/
kitchen.dokken.yml
96 lines (83 loc) · 2.21 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
---
driver:
name: dokken
privileged: true
chef_version: <%= ENV['CHEF_VERSION'] || 'current' %>
chef_license: accept-no-persist
transport:
name: dokken
provisioner:
name: dokken
attributes:
apt:
confd:
install_recommends: false
verifier:
name: inspec
platforms:
- name: ubuntu16
driver:
image: dokken/ubuntu-16.04
pid_one_command: /bin/systemd
intermediate_instructions:
- RUN /usr/bin/apt-get update -qq
- name: ubuntu18
driver:
image: dokken/ubuntu-18.04
pid_one_command: /bin/systemd
intermediate_instructions:
- RUN /usr/bin/apt-get update -qq
- name: debian9
driver:
image: dokken/debian-9
pid_one_command: /bin/systemd
intermediate_instructions:
- RUN /usr/bin/apt-get update -qq
- name: centos7
driver:
image: centos:7.6.1810
pid_one_command: /usr/lib/systemd/systemd
platform: rhel
intermediate_instructions:
- RUN yum install -y net-tools initscripts systemd-sysv which lsof curl
- name: centos8
driver:
image: centos:8.1.1911
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
driver:
image: dokken/fedora-latest
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:2018.03.0.20190212
pid_one_command: /sbin/init
platform: amazon
intermediate_instructions:
- RUN yum install -y net-tools initscripts which
- name: amazon2
driver:
image: amazonlinux:2.0.20200304.0
pid_one_command: /usr/lib/systemd/systemd
platform: amazon
intermediate_instructions:
- RUN yum install -y net-tools initscripts
suites:
- name: v7
verifier:
inspec_tests:
- test/smoke/v7
run_list:
- recipe[elastic_repo_test::v7]
- name: v6
verifier:
inspec_tests:
- test/smoke/v6
run_list:
- recipe[elastic_repo_test::v6]