mirror of
https://github.com/ceph/ceph
synced 2024-12-26 21:43:10 +00:00
21d68cf137
Ceph config option names may use spaces, underscores, or by one reference hyphens as interstitial separators. Most usage within the doc tree uses underscores, though example conf files and especially structured lists of options mostly use spaces. Mostly. Underscores help differentiate the config names from surrounding text, and moreover facilitate scripting, grep, awk, etc and match their form in src/common/options.cc. This PR conforms these occurrences of option names to use interstitial underscores instead of spaces. Fixes: https://tracker.ceph.com/issues/48301 Signed-off-by: Anthony D'Atri <anthony.datri@gmail.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 network interfaces, you can configure a private / cluster
|
|
#network for RADOS object replication, heartbeats, backfill,
|
|
#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 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} |