forked from sous-chefs/mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kitchen.yml
132 lines (118 loc) · 2.73 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
<%
yum_dists_with_56 = %w(centos-6 centos-7 fedora-28 amazon-linux)
suse_dists_with_56 = %w(opensuse-leap)
apt_dists_with_56 = %w(ubuntu-14.04)
yum_dists_with_57 = %w(centos-6 centos-7 fedora-28 fedora-latest)
apt_dists_with_57 = %w(ubuntu-16.04 ubuntu-18.04)
%>
---
driver:
name: vagrant
customize:
memory: 1024
provisioner:
name: chef_zero
deprecations_as_errors: true
verifier:
name: inspec
platforms:
- name: centos-6
- name: centos-7
- name: debian-8
- name: debian-9
- name: fedora-28
- name: opensuse-leap
driver:
box: bento/opensuse-leap-42
- name: ubuntu-16.04
- name: ubuntu-18.04
- name: amazonlinux
driver_config:
box: mvbcoding/awslinux
suites:
#
# client
#
- name: installation_client_package-56
run_list:
- recipe[test::installation_client]
attributes:
mysql:
version: '5.6'
includes: <%= apt_dists_with_56 %>
- name: installation_client_package-57
run_list:
- recipe[test::installation_client]
attributes:
mysql:
version: '5.7'
includes: <%= apt_dists_with_57 %>
- name: installation_client_package-56-yum
run_list:
- recipe[selinux::disabled]
- recipe[test::yum_repo]
- recipe[test::installation_client]
attributes:
mysql:
version: '5.6'
includes: <%= yum_dists_with_56 %>
- name: installation_client_package-56-suse
run_list:
- recipe[test::yum_repo]
- recipe[test::installation_client]
attributes:
mysql:
version: '5.6'
includes: <%= suse_dists_with_56 %>
- name: installation_client_package-57-yum
run_list:
- recipe[selinux::disabled]
- recipe[test::yum_repo]
- recipe[test::installation_client]
attributes:
mysql:
version: '5.7'
includes: <%= yum_dists_with_57 %>
#
# server smoke
#
- name: smoke56
run_list:
- recipe[test::smoke]
attributes:
mysql:
version: '5.6'
includes: <%= apt_dists_with_56 %>
- name: smoke57
run_list:
- recipe[test::smoke]
attributes:
mysql:
version: '5.7'
includes: <%= apt_dists_with_57 %>
- name: smoke56-yum
run_list:
- recipe[selinux::disabled]
- recipe[test::yum_repo]
- recipe[test::smoke]
attributes:
mysql:
version: '5.6'
includes: <%= yum_dists_with_56 %>
- name: smoke56-suse
run_list:
- recipe[test::yum_repo]
- recipe[test::smoke]
attributes:
mysql:
version: '5.6'
includes: <%= suse_dists_with_56 %>
- name: smoke57-yum
run_list:
- recipe[selinux::disabled]
- recipe[test::yum_repo]
- recipe[test::smoke]
attributes:
mysql:
version: '5.7'
includes: <%= yum_dists_with_57 %>