-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
kitchen.yml
60 lines (55 loc) · 1.12 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
---
driver:
name: vagrant
provisioner:
name: chef_zero
product_name: chef
product_version: <%= ENV['CHEF_VERSION'] || 'latest' %>
install_strategy: once
# enforce_idempotency: true
multiple_converge: 2
client_rb:
treat_deprecation_warnings_as_errors: true
verifier:
name: inspec
platforms:
- name: amazon-linux
- name: amazon-linux-2
- name: centos-7
- name: rockylinux-8
- name: debian-9
- name: debian-10
- name: debian-11
- name: ubuntu-18.04
- name: ubuntu-20.04
- name: ubuntu-22.04
suites:
- name: default
run_list:
- recipe[test::default]
verifier:
inspec_tests:
- test/smoke/default
- name: ulimit
run_list:
- recipe[test::default]
verifier:
inspec_tests:
- test/smoke/ulimit
attributes:
stunnel:
ulimit: 8192
- name: certificates
run_list:
- recipe[test::certificates]
verifier:
inspec_tests:
- test/smoke/certificates
- name: source
run_list:
- recipe[test::default]
verifier:
inspec_tests:
- test/smoke/source
attributes:
install_method: 'source'