-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
kitchen.yml
58 lines (50 loc) · 1.1 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
driver:
name: vagrant
provisioner:
name: chef_zero
product_name: chef
chef_license: accept-no-persist
chef_version: <%= ENV['CHEF_VERSION'] || 'current' %>
multiple_converge: 2
enforce_idempotency: true
deprecations_as_errors: true
verifier:
name: inspec
platforms:
- name: almalinux-8
- name: amazonlinux-2
- name: centos-7
- name: centos-stream-8
- name: fedora-latest
- name: rockylinux-8
suites:
- name: resource
run_list:
- recipe[test::resource]
- name: connectors
run_list:
- recipe[test::connectors]
- name: mysql55
run_list:
- recipe[yum-mysql-community::mysql55]
- recipe[test::server]
excludes:
- almalinux-8
- centos-stream-8
- rockylinux-8
- name: mysql56
run_list:
- recipe[yum-mysql-community::mysql56]
- recipe[test::server]
excludes:
- almalinux-8
- centos-stream-8
- rockylinux-8
- name: mysql57
run_list:
- recipe[yum-mysql-community::mysql57]
- recipe[test::server]
excludes:
- almalinux-8
- centos-stream-8
- rockylinux-8