-
-
Notifications
You must be signed in to change notification settings - Fork 805
/
kitchen.yml
98 lines (94 loc) · 2.16 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
87
88
89
90
91
92
93
94
95
96
97
98
---
driver:
name: vagrant
provisioner:
name: chef_infra
deprecations_as_errors: true
chef_license: accept
product_name: chef
product_version: <%= ENV['CHEF_VERSION'] || 'latest' %>
install_strategy: always
chef_log_level: <%= ENV['CHEF_LOG_LEVEL'] || 'auto' %>
verifier:
name: inspec
platforms:
- name: almalinux-8
- name: amazonlinux-2
- name: centos-7
- name: centos-stream-8
- name: debian-10
- name: debian-11
- name: fedora-latest
- name: opensuse-leap-15
- name: rockylinux-8
- name: ubuntu-18.04
- name: ubuntu-20.04
suites:
- name: distro
run_list:
- recipe[test::distro]
- recipe[test::test_site]
excludes:
- centos-7
verifier:
inspec_tests:
- test/integration/default
- test/integration/default_install
- name: distro-nginx-full
run_list:
- recipe[test::distro_nginx-full]
- recipe[test::test_site]
includes:
- ubuntu-18.04
- ubuntu-20.04
verifier:
inspec_tests:
- test/integration/default
- test/integration/default_install
- name: repo
run_list:
- recipe[test::repo]
- recipe[test::test_site]
verifier:
inspec_tests:
- test/integration/default
- test/integration/repo
- test/integration/repo_install
- name: repo_overrides
run_list:
- recipe[test::repo_overrides]
- recipe[test::test_site]
includes:
- almalinux-8
- almalinux-9
- centos-stream-8
- centos-stream-9
- debian-11
- fedora-latest
- rockylinux-8
- rockylinux-9
- ubuntu-20.04
verifier:
inspec_tests:
- test/integration/default
- test/integration/repo_overrides
- test/integration/repo_install
- name: epel
run_list:
- recipe[test::epel]
- recipe[test::test_site]
includes:
- almalinux-8
- almalinux-9
- centos-7
- centos-stream-8
- centos-stream-9
- rockylinux-8
- rockylinux-9
verifier:
inspec_tests:
- test/integration/default
- test/integration/epel
- name: invalid-conf
run_list:
- recipe[test::invalid-conf]