mirror of
https://github.com/ceph/ceph
synced 2025-01-23 03:25:49 +00:00
98ac8e1130
Signed-off-by: Ville Ojamo <14869000+bluikko@users.noreply.github.com>
32 lines
1.1 KiB
Plaintext
32 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}
|