forked from ceph/ceph-chef
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.kitchen.yml
75 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
---
driver_plugin: vagrant
driver_config:
# vagrantfile_erb: test/integration/Vagrantfile.erb
require_chef_omnibus: true
driver:
network:
- [ "private_network", { ip: "192.168.33.33" } ]
platforms:
- name: ubuntu-14.04
run_list:
- recipe[apt]
attributes:
apache:
mpm: event # ugly workaround for onehealth-cookbooks/apache2 #236
- name: centos-7.2
- name: rhel-7.1
- name: fedora-22
provisioner:
name: chef_zero
suites:
- name: default
run_list:
- "recipe[ceph-chef::repo]"
- "recipe[ceph-chef]"
attributes: &defaults
ceph:
version: jewel
search_by_environment: true
config:
fsid: ae3f1d03-bacd-4a90-b869-1a4fabb107f2
network:
cluster:
cidr:
- 192.168.33.0/24
public:
cidr:
- 192.168.33.0/24
- name: osd
run_list:
- "role[ceph-osd]"
attributes: *defaults
- name: mon
run_list:
- "recipe[ceph-chef::mon]"
- "recipe[ceph-chef::mon_start]"
- "recipe[ceph-chef::mon_bootstrap_peer_hint]"
- "recipe[ceph-chef::mon_keys]"
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-chef::all_in_one]
- recipe[ceph_test::cephfs]