forked from sous-chefs/mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
141 lines (130 loc) · 2.7 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
driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-5.10
- name: centos-6.5
- name: debian-7.4
run_list:
- recipe[apt]
- name: fedora-19
- name: fedora-20
- name: freebsd-9.2
run_list:
- recipe[freebsd::portsnap]
- name: freebsd-10.0 # unsupported until Chef 11.14.0
- name: omnios-r151006j-r1
driver:
box: omnios-r151006j-r1
box_url: http://omnios.omniti.com/media/OmniOS_r151008j-r1.box
run_list:
- recipe[ips-omniti]
- name: ubuntu-10.04
run_list:
- recipe[apt]
- name: ubuntu-12.04
run_list:
- recipe[apt]
- name: ubuntu-14.04
run_list:
- recipe[apt]
suites:
- name: client
run_list:
- recipe[mysql_client_test]
- name: server50-default
run_list:
- recipe[mysql_test_custom::server]
includes: [ 'centos-5.10' ]
attributes:
mysql:
version: '5.0'
- name: server50-custom
run_list:
- recipe[mysql_test_custom::server]
includes: [ 'centos-5.10' ]
attributes:
mysql:
version: '5.0'
port: '3308'
data_dir: '/data'
- name: server51-default
run_list:
- recipe[mysql_test_custom::server]
includes: [
'centos-5.10',
'centos-6.5',
'ubuntu-10.04'
]
attributes:
mysql:
version: '5.1'
- name: server51-custom
run_list:
- recipe[mysql_test_custom::server]
includes: [
'centos-5.10',
'centos-6.5',
'ubuntu-10.04'
]
attributes:
mysql:
version: '5.1'
port: '3308'
data_dir: '/data'
- name: server55-default
run_list:
- recipe[mysql_test_custom::server]
includes: [
'fedora-19',
'freebsd-9.2',
'freebsd-10.0',
'debian-7.4',
'ubuntu-12.04',
'ubuntu-13.04',
'ubuntu-14.04',
'omnios-r151006j-r1'
]
attributes:
mysql:
version: '5.5'
- name: server55-custom
run_list:
- recipe[mysql_test_custom::server]
includes: [
'fedora-19',
'freebsd-9.2',
'freebsd-10.0',
'debian-7.4',
'ubuntu-12.04',
'ubuntu-13.04',
'omnios-r151006j-r1'
]
attributes:
mysql:
version: '5.5'
port: '3308'
data_dir: '/data'
- name: server56-default
run_list:
- recipe[mysql_test_custom::server]
includes: [
'ubuntu-14.04',
'omnios-r151006j-r1'
]
attributes:
mysql:
version: '5.6'
- name: server56-custom
run_list:
- recipe[mysql_test_custom::server]
includes: [
'ubuntu-14.04',
'omnios-r151006j-r1'
]
attributes:
mysql:
version: '5.6'
port: '3308'
data_dir: '/data'