forked from sous-chefs/mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kitchen.yml
159 lines (144 loc) · 3.4 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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<%
yum_dists_with_56 = %w(centos-7 amazon-linux)
suse_dists_with_56 = %w(opensuse-leap)
yum_dists_with_57 = %w(centos-7 fedora-28 fedora-latest)
apt_dists_with_57 = %w(ubuntu-16.04 ubuntu-18.04)
yum_dists_with_80 = %w(centos-7 centos-8 fedora-28 fedora-latest)
apt_dists_with_80 = %w(ubuntu-20.04)
%>
---
driver:
name: vagrant
customize:
memory: 1024
provisioner:
name: chef_zero
deprecations_as_errors: true
verifier:
name: inspec
platforms:
- name: centos-7
- name: centos-8
- name: debian-9
- name: debian-10
- name: fedora-28
- name: opensuse-leap
driver:
box: bento/opensuse-leap-42
- name: ubuntu-16.04
- name: ubuntu-18.04
- name: ubuntu-20.04
- name: amazonlinux
driver_config:
box: mvbcoding/awslinux
suites:
#
# client
#
- name: yum-client-install-56
run_list:
- recipe[selinux::disabled]
- recipe[test::yum_repo]
- recipe[test::installation_client]
attributes:
mysql_test:
version: '5.6'
includes: <%= yum_dists_with_56 %>
- name: suse-client-install-56
run_list:
- recipe[test::yum_repo]
- recipe[test::installation_client]
attributes:
mysql_test:
version: '5.6'
includes: <%= suse_dists_with_56 %>
- name: client-install-57
run_list:
- recipe[test::installation_client]
attributes:
mysql_test:
version: '5.7'
includes: <%= apt_dists_with_57 %>
- name: yum-client-install-57
run_list:
- recipe[selinux::disabled]
- recipe[test::yum_repo]
- recipe[test::installation_client]
attributes:
mysql_test:
version: '5.7'
includes: <%= yum_dists_with_57 %>
- name: yum-client-install-80
run_list:
- recipe[selinux::disabled]
- recipe[test::yum_repo]
- recipe[test::installation_client]
attributes:
mysql_test:
version: '8.0'
includes: <%= yum_dists_with_80 %>
- name: client-install-80
run_list:
- recipe[test::installation_client]
attributes:
mysql_test:
version: '8.0'
includes: <%= apt_dists_with_80 %>
#
# server smoke
#
- name: yum-smoke56
run_list:
- recipe[selinux::disabled]
- recipe[test::yum_repo]
- recipe[test::smoke]
attributes:
mysql_test:
version: '5.6'
includes: <%= yum_dists_with_56 %>
verifier:
inspec_tests:
- path: test/integration/smoke56
- name: smoke57
run_list:
- recipe[test::smoke]
attributes:
mysql_test:
version: '5.7'
includes: <%= apt_dists_with_57 %>
- name: suse-smoke56
run_list:
- recipe[test::yum_repo]
- recipe[test::smoke]
attributes:
mysql_test:
version: '5.6'
includes: <%= suse_dists_with_56 %>
- name: yum-smoke57
run_list:
- recipe[selinux::disabled]
- recipe[test::yum_repo]
- recipe[test::smoke]
attributes:
mysql_test:
version: '5.7'
includes: <%= yum_dists_with_57 %>
- name: smoke80
run_list:
- recipe[test::smoke]
attributes:
mysql_test:
version: '8.0'
includes: <%= apt_dists_with_80 %>
- name: yum-smoke80
run_list:
- recipe[selinux::disabled]
- recipe[test::yum_repo]
- recipe[test::smoke]
attributes:
mysql_test:
version: '8.0'
includes: <%= yum_dists_with_80 %>
verifier:
inspec_tests:
- path: test/integration/smoke80