-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathceph.conf
More file actions
24 lines (22 loc) · 783 Bytes
/
ceph.conf
File metadata and controls
24 lines (22 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[global]
fsid = {{ .deis_store_fsid }}
mon initial members = {{ .deis_store_monSetupLock }}
auth cluster required = cephx
auth service required = cephx
auth client required = cephx
osd pool default size = {{ .deis_store_size }}
osd pool default min_size = {{ .deis_store_minSize }}
osd pool default pg_num = {{ .deis_store_pgNum }}
osd pool default pgp_num = {{ .deis_store_pgNum }}
osd recovery delay start = {{ .deis_store_delayStart }}
log file = /dev/stdout
{{ range $mon := .deis_store_hosts }}
[mon.{{ $mon.Value }}]
host = {{ $mon.Value }}
mon addr = {{ Base $mon.Key }}:6789
{{ end }}
[client.radosgw.gateway]
host = deis-store-gateway
keyring = /etc/ceph/ceph.client.radosgw.keyring
rgw socket path = /var/run/ceph/ceph.radosgw.gateway.fastcgi.sock
log file = /dev/stdout