forked from ceph/ceph-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
67 lines (64 loc) · 1.32 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
---
driver_plugin: vagrant
driver_config:
vagrantfile_erb: test/integration/Vagrantfile.erb
require_chef_omnibus: true
platforms:
- name: ubuntu-12.04
run_list:
- recipe[apt]
- name: ubuntu-14.04
run_list:
- recipe[apt]
attributes:
apache:
mpm: event # ugly workaround for onehealth-cookbooks/apache2 #236
- name: debian-7.4
run_list:
- recipe[apt]
- name: centos-6.5
- name: centos-5.10
- name: fedora-18
provisioner:
name: chef_zero
suites:
- name: default
run_list:
- "recipe[ceph::repo]"
- "recipe[ceph]"
attributes: &defaults
ceph:
config:
fsid: ae3f1d03-bacd-4a90-b869-1a4fabb107f2
mon_initial_members:
- "127.0.0.1"
- name: osd
run_list:
- "role[ceph-osd]"
attributes: *defaults
- name: mon
run_list:
- "role[ceph-mon]"
attributes: *defaults
- name: mds
run_list:
- "role[ceph-mds]"
attributes: *defaults
- name: radosgw
run_list:
- "role[ceph-radosgw]"
attributes: *defaults
- name: aio
attributes:
ceph:
config-sections:
global:
"osd journal size" : 128
"osd pool default size": 1
osd_devices:
- { device: "/dev/sdb" }
- { device: "/dev/sdc" }
- { device: "/dev/sdd" }
run_list:
- recipe[ceph::all_in_one]
- recipe[ceph_test::cephfs]