2015-02-15 09:21:27 +08:00
|
|
|
#jinja2: trim_blocks: "true", lstrip_blocks: "true"
|
2014-10-10 21:41:31 +08:00
|
|
|
# {{ ansible_managed }}
|
2014-03-04 02:08:51 +08:00
|
|
|
|
|
|
|
[global]
|
|
|
|
{% if cephx %}
|
|
|
|
auth cluster required = cephx
|
|
|
|
auth service required = cephx
|
|
|
|
auth client required = cephx
|
2014-11-13 17:59:42 +08:00
|
|
|
cephx require signatures = {{ cephx_require_signatures }} # Kernel RBD does NOT support signatures!
|
|
|
|
cephx cluster require signatures = {{ cephx_cluster_require_signatures }}
|
2014-08-30 08:26:40 +08:00
|
|
|
cephx service require signatures = {{ cephx_service_require_signatures }}
|
2014-03-04 02:08:51 +08:00
|
|
|
{% else %}
|
|
|
|
auth cluster required = none
|
|
|
|
auth service required = none
|
|
|
|
auth client required = none
|
|
|
|
auth supported = none
|
|
|
|
{% endif %}
|
|
|
|
fsid = {{ fsid }}
|
2015-01-06 21:23:23 +08:00
|
|
|
max open files = {{ max_open_files }}
|
2014-03-04 02:08:51 +08:00
|
|
|
osd pool default pg num = {{ pool_default_pg_num }}
|
|
|
|
osd pool default pgp num = {{ pool_default_pgp_num }}
|
|
|
|
osd pool default size = {{ pool_default_size }}
|
|
|
|
osd pool default min size = {{ pool_default_min_size }}
|
|
|
|
osd pool default crush rule = {{ pool_default_crush_rule }}
|
2014-05-01 07:24:20 +08:00
|
|
|
{% if common_single_host_mode is defined %}
|
|
|
|
osd crush chooseleaf type = 0
|
|
|
|
{% endif %}
|
2014-08-30 08:26:40 +08:00
|
|
|
{% if disable_in_memory_logs %}
|
|
|
|
# Disable in-memory logs
|
|
|
|
debug_lockdep = 0/0
|
|
|
|
debug_context = 0/0
|
|
|
|
debug_crush = 0/0
|
|
|
|
debug_buffer = 0/0
|
|
|
|
debug_timer = 0/0
|
|
|
|
debug_filer = 0/0
|
|
|
|
debug_objecter = 0/0
|
|
|
|
debug_rados = 0/0
|
|
|
|
debug_rbd = 0/0
|
|
|
|
debug_journaler = 0/0
|
|
|
|
debug_objectcatcher = 0/0
|
|
|
|
debug_client = 0/0
|
|
|
|
debug_osd = 0/0
|
|
|
|
debug_optracker = 0/0
|
|
|
|
debug_objclass = 0/0
|
|
|
|
debug_filestore = 0/0
|
|
|
|
debug_journal = 0/0
|
|
|
|
debug_ms = 0/0
|
|
|
|
debug_monc = 0/0
|
|
|
|
debug_tp = 0/0
|
|
|
|
debug_auth = 0/0
|
|
|
|
debug_finisher = 0/0
|
|
|
|
debug_heartbeatmap = 0/0
|
|
|
|
debug_perfcounter = 0/0
|
|
|
|
debug_asok = 0/0
|
|
|
|
debug_throttle = 0/0
|
|
|
|
debug_mon = 0/0
|
|
|
|
debug_paxos = 0/0
|
|
|
|
debug_rgw = 0/0
|
|
|
|
{% endif %}
|
2015-01-16 21:26:30 +08:00
|
|
|
{% if enable_debug_global %}
|
|
|
|
debug ms = {{ debug_global_level }}
|
|
|
|
{% endif %}
|
2014-08-30 08:58:27 +08:00
|
|
|
|
2014-11-10 21:50:19 +08:00
|
|
|
[client]
|
2015-06-09 22:32:17 +08:00
|
|
|
rbd cache = {{ rbd_cache }}
|
2014-11-10 21:50:19 +08:00
|
|
|
rbd cache writethrough until flush = true
|
2015-06-09 06:42:01 +08:00
|
|
|
rbd concurrent management ops = {{ rbd_concurrent_management_ops }}
|
2015-06-17 19:44:05 +08:00
|
|
|
admin socket = {{ rbd_client_admin_socket_path }}/$cluster-$type.$id.$pid.$cctid.asok # must be writable by QEMU and allowed by SELinux or AppArmor
|
2015-02-23 22:28:27 +08:00
|
|
|
log file = {{ rbd_client_log_file }} # must be writable by QEMU and allowed by SELinux or AppArmor
|
2014-11-10 21:50:19 +08:00
|
|
|
|
2014-03-04 02:08:51 +08:00
|
|
|
[mon]
|
2014-04-11 20:07:37 +08:00
|
|
|
mon osd down out interval = {{ mon_osd_down_out_interval }}
|
2014-04-18 16:47:30 +08:00
|
|
|
mon osd min down reporters = {{ mon_osd_min_down_reporters }}
|
2015-01-16 21:26:30 +08:00
|
|
|
{% if enable_debug_mon %}
|
|
|
|
debug mon = {{ debug_mon_level }}
|
|
|
|
debug paxos = {{ debug_mon_level }}
|
|
|
|
debug auth = {{ debug_mon_level }}
|
|
|
|
{% endif %}
|
2015-06-11 08:42:41 +08:00
|
|
|
{% for host in groups[mon_group_name] %}
|
2014-03-12 22:34:54 +08:00
|
|
|
{% if hostvars[host]['ansible_hostname'] is defined %}
|
2014-03-04 02:08:51 +08:00
|
|
|
[mon.{{ hostvars[host]['ansible_hostname'] }}]
|
|
|
|
host = {{ hostvars[host]['ansible_hostname'] }}
|
2014-11-10 22:28:13 +08:00
|
|
|
mon addr = {{ hostvars[host]['ansible_' + monitor_interface]['ipv4']['address'] }}
|
2014-03-12 22:34:54 +08:00
|
|
|
{% endif %}
|
2014-03-04 02:08:51 +08:00
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
[osd]
|
|
|
|
osd mkfs type = {{ osd_mkfs_type }}
|
2014-08-30 08:26:40 +08:00
|
|
|
osd mkfs options xfs = {{ osd_mkfs_options_xfs }}
|
|
|
|
osd mount options xfs = {{ osd_mount_options_xfs }}
|
2014-03-04 02:08:51 +08:00
|
|
|
osd journal size = {{ journal_size }}
|
|
|
|
{% if cluster_network is defined %}
|
|
|
|
cluster_network = {{ cluster_network }}
|
|
|
|
{% endif %}
|
|
|
|
{% if public_network is defined %}
|
|
|
|
public_network = {{ public_network }}
|
|
|
|
{% endif %}
|
2014-04-11 20:07:37 +08:00
|
|
|
osd mon heartbeat interval = {{ osd_mon_heartbeat_interval }}
|
|
|
|
# Performance tuning
|
|
|
|
filestore merge threshold = {{ filestore_merge_threshold }}
|
|
|
|
filestore split multiple = {{ filestore_split_multiple }}
|
|
|
|
osd op threads = {{ osd_op_threads }}
|
2014-08-30 08:26:40 +08:00
|
|
|
filestore op threads = {{ filestore_op_threads }}
|
|
|
|
filestore max sync interval = {{ filestore_max_sync_interval }}
|
|
|
|
osd max scrubs = {{ osd_max_scrubs }}
|
2014-04-11 20:07:37 +08:00
|
|
|
# Recovery tuning
|
|
|
|
osd recovery max active = {{ osd_recovery_max_active }}
|
|
|
|
osd max backfills = {{ osd_max_backfills }}
|
|
|
|
osd recovery op priority = {{ osd_recovery_op_priority }}
|
2014-09-28 23:31:50 +08:00
|
|
|
osd recovery max chunk = {{ osd_recovery_max_chunk }}
|
|
|
|
osd recovery threads = {{ osd_recovery_threads }}
|
2014-08-30 08:26:40 +08:00
|
|
|
osd objectstore = {{ osd_objectstore }}
|
2014-08-30 08:58:27 +08:00
|
|
|
osd crush update on start = {{ osd_crush_update_on_start }}
|
2015-01-16 21:26:30 +08:00
|
|
|
{% if enable_debug_osd %}
|
|
|
|
debug osd = {{ debug_osd_level }}
|
|
|
|
debug filestore = {{ debug_osd_level }}
|
|
|
|
debug journal = {{ debug_osd_level }}
|
|
|
|
debug monc = {{ debug_osd_level }}
|
|
|
|
{% endif %}
|
2015-06-11 22:49:57 +08:00
|
|
|
# Deep scrub impact
|
|
|
|
osd scrub sleep = {{ osd_scrub_sleep }}
|
|
|
|
osd disk thread ioprio class = {{ osd_disk_thread_ioprio_class }}
|
|
|
|
osd disk thread ioprio priority = {{ osd_disk_thread_ioprio_priority }}
|
|
|
|
osd scrub chunk max = {{ osd_scrub_chunk_max }}
|
|
|
|
osd deep scrub stride = {{ osd_deep_scrub_stride }}
|
2014-08-30 08:58:27 +08:00
|
|
|
|
2014-03-11 00:14:11 +08:00
|
|
|
{% if mds %}
|
2014-03-04 02:08:51 +08:00
|
|
|
[mds]
|
2015-01-16 21:26:30 +08:00
|
|
|
{% if enable_debug_mds %}
|
|
|
|
debug mds = {{ debug_mds_level }}
|
|
|
|
debug mds balancer = {{ debug_mds_level }}
|
|
|
|
debug mds log = {{ debug_mds_level }}
|
|
|
|
debug mds migrator = {{ debug_mds_level }}
|
|
|
|
{% endif %}
|
2015-06-11 08:42:41 +08:00
|
|
|
{% for host in groups[mds_group_name] %}
|
2014-03-12 23:13:06 +08:00
|
|
|
{% if hostvars[host]['ansible_hostname'] is defined %}
|
2014-03-04 02:08:51 +08:00
|
|
|
[mds.{{ hostvars[host]['ansible_hostname'] }}]
|
|
|
|
host = {{ hostvars[host]['ansible_hostname'] }}
|
2014-03-12 23:13:06 +08:00
|
|
|
{% endif %}
|
2014-03-04 02:08:51 +08:00
|
|
|
{% endfor %}
|
2014-03-11 00:14:11 +08:00
|
|
|
{% endif %}
|
2014-03-06 20:54:37 +08:00
|
|
|
|
|
|
|
{% if radosgw %}
|
2015-06-11 08:42:41 +08:00
|
|
|
{% for host in groups[rgw_group_name] %}
|
2014-03-20 19:14:43 +08:00
|
|
|
{% if hostvars[host]['ansible_hostname'] is defined %}
|
2015-06-12 17:47:08 +08:00
|
|
|
[client.rgw.{{ hostvars[host]['ansible_hostname'] }}]
|
2014-04-07 18:06:24 +08:00
|
|
|
{% if radosgw_dns_name is defined %}
|
|
|
|
rgw dns name = {{ radosgw_dns_name }}
|
|
|
|
{% endif %}
|
2014-03-26 18:26:18 +08:00
|
|
|
host = {{ hostvars[host]['ansible_hostname'] }}
|
2015-06-12 17:47:08 +08:00
|
|
|
keyring = /var/lib/ceph/radosgw/ceph-rgw.{{ hostvars[host]['ansible_hostname'] }}/keyring
|
2015-02-15 09:21:27 +08:00
|
|
|
rgw socket path = /tmp/radosgw-{{ hostvars[host]['ansible_hostname'] }}.sock
|
2015-06-12 17:47:08 +08:00
|
|
|
log file = /var/log/radosgw/radosgw-{{ hostvars[host]['ansible_hostname'] }}.log
|
|
|
|
rgw data = /var/lib/ceph/radosgw/ceph-rgw.{{ hostvars[host]['ansible_hostname'] }}
|
2014-03-06 20:54:37 +08:00
|
|
|
rgw print continue = false
|
2015-03-02 17:22:52 +08:00
|
|
|
{% if radosgw_frontend == 'civetweb' %}
|
|
|
|
rgw frontends = civetweb port={{ radosgw_civetweb_port }}
|
|
|
|
{% endif %}
|
2015-06-04 01:01:23 +08:00
|
|
|
{% if radosgw_keystone %}
|
|
|
|
rgw keystone url = {{ radosgw_keystone_url }}
|
|
|
|
rgw keystone admin token = {{ radosgw_keystone_admin_token }}
|
|
|
|
rgw keystone accepted roles = {{ radosgw_keystone_accepted_roles }}
|
|
|
|
rgw keystone token cache size = {{ radosgw_keystone_token_cache_size }}
|
|
|
|
rgw keystone revocation interval = {{ radosgw_keystone_revocation_internal }}
|
|
|
|
rgw s3 auth use keystone = {{ radosgw_s3_auth_use_keystone }}
|
|
|
|
nss db path = {{ radosgw_nss_db_path }}
|
|
|
|
{% endif %}
|
2014-03-20 19:14:43 +08:00
|
|
|
{% endif %}
|
2014-03-19 19:40:02 +08:00
|
|
|
{% endfor %}
|
2014-03-06 20:54:37 +08:00
|
|
|
{% endif %}
|
2015-03-23 22:08:58 +08:00
|
|
|
|
|
|
|
{% if restapi %}
|
|
|
|
[client.restapi]
|
|
|
|
public addr = {{ hostvars[inventory_hostname]['ansible_' + restapi_interface]['ipv4']['address'] }}:{{ restapi_port }}
|
|
|
|
restapi base url = {{ restapi_base_url }}
|
|
|
|
restapi log level = {{ restapi_log_level }}
|
|
|
|
keyring = /var/lib/ceph/restapi/ceph-restapi/keyring
|
|
|
|
log file = /var/log/ceph/ceph-restapi.log
|
|
|
|
{% endif %}
|