forked from sous-chefs/percona
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
77 lines (71 loc) · 1.57 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
---
driver:
name: vagrant
provisioner:
name: chef_zero
product_name: chef
product_version: <%= ENV['CHEF_VERSION'] || 'latest' %>
install_strategy: once
client_rb:
treat_deprecation_warnings_as_errors: true
platforms:
- name: amazon-linux
driver_config:
box: mvbcoding/awslinux
- name: centos-6
- name: centos-7
- name: debian-8
- name: debian-9
- name: fedora-27
- name: freebsd-10
- name: freebsd-11
- name: opensuse-leap-42
- name: ubuntu-16.04
- name: ubuntu-18.04
suites:
- name: client_5.6
attributes:
percona:
apt:
keyserver: hkp://pgp.mit.edu:80
version: "5.6"
run_list:
- recipe[percona::client]
- recipe[percona::toolkit]
- name: client_5.7
attributes:
percona:
apt:
keyserver: hkp://pgp.mit.edu:80
version: "5.7"
run_list:
- recipe[percona::client]
- recipe[percona::toolkit]
- name: server_5.6
attributes:
percona:
apt:
keyserver: hkp://pgp.mit.edu:80
version: "5.6"
server:
datadir: /tmp/mysql
debian_password: d3b1an
jemalloc: true
root_password: r00t
run_list:
- recipe[percona::server]
- recipe[percona::backup]
- name: server_5.7
attributes:
percona:
apt:
keyserver: hkp://pgp.mit.edu:80
version: "5.7"
server:
datadir: /tmp/mysql
debian_password: d3b1an
jemalloc: true
root_password: r00t
run_list:
- recipe[percona::server]
- recipe[percona::backup]