mirror of
https://github.com/ceph/ceph
synced 2024-12-11 22:18:18 +00:00
2e3302cc3e
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
[global]
|
|
fsid = {cluster-id}
|
|
mon initial members = {hostname}[, {hostname}]
|
|
mon host = {ip-address}[, {ip-address}]
|
|
|
|
#All clusters have a front-side public network.
|
|
#If you have two NICs, you can configure a back side cluster
|
|
#network for OSD object replication, heart beats, backfilling,
|
|
#recovery, etc.
|
|
public network = {network}[, {network}]
|
|
#cluster network = {network}[, {network}]
|
|
|
|
#Clusters require authentication by default.
|
|
auth cluster required = cephx
|
|
auth service required = cephx
|
|
auth client required = cephx
|
|
|
|
#Choose reasonable numbers for your journals, number of replicas
|
|
#and placement groups.
|
|
osd journal size = {n}
|
|
osd pool default size = {n} # Write an object n times.
|
|
osd pool default min size = {n} # Allow writing n copy in a degraded state.
|
|
osd pool default pg num = {n}
|
|
osd pool default pgp num = {n}
|
|
|
|
#Choose a reasonable crush leaf type.
|
|
#0 for a 1-node cluster.
|
|
#1 for a multi node cluster in a single rack
|
|
#2 for a multi node, multi chassis cluster with multiple hosts in a chassis
|
|
#3 for a multi node cluster with hosts across racks, etc.
|
|
osd crush chooseleaf type = {n} |