forked from sous-chefs/percona
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
42 lines (39 loc) · 879 Bytes
/
.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
driver:
require_chef_omnibus: <%= ENV.fetch("CHEF_VERSION", "latest") %>
ssh_key: <%= File.expand_path("./test/support/keys/vagrant") %>
name: vagrant
customize:
memory: 768
provisioner:
name: chef_zero
platforms:
- name: ubuntu-12.04
- name: ubuntu-14.04
- name: centos-6.5
suites:
- name: client
run_list:
- recipe[percona::client]
- name: server
run_list:
- recipe[percona::server]
attributes:
percona:
server:
jemalloc: true
debian_password: d3b1an
root_password: r00t
- name: xtrabackup
run_list:
- recipe[percona::server]
- recipe[percona::backup]
- name: toolkit
run_list:
- recipe[percona::toolkit]
- name: new_datadir
run_list:
- recipe[percona::server]
attributes:
percona:
server:
datadir: "/tmp/mysql"