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]
|
2016-04-07 16:46:42 +08:00
|
|
|
{% if not cephx %}
|
2015-12-16 23:11:14 +08:00
|
|
|
auth cluster required = none
|
|
|
|
auth service required = none
|
|
|
|
auth client required = none
|
|
|
|
auth supported = none
|
|
|
|
{% endif %}
|
2017-01-24 23:06:10 +08:00
|
|
|
{% if ip_version == 'ipv6' %}
|
2017-02-08 02:34:29 +08:00
|
|
|
ms bind ipv6 = true
|
2017-01-24 23:06:10 +08:00
|
|
|
{% endif %}
|
2016-12-08 20:25:15 +08:00
|
|
|
{% if common_single_host_mode is defined and common_single_host_mode %}
|
2015-12-16 23:11:14 +08:00
|
|
|
osd crush chooseleaf type = 0
|
2014-05-01 07:24:20 +08:00
|
|
|
{% endif %}
|
2016-05-27 22:37:07 +08:00
|
|
|
{# NOTE (leseb): the blank lines in-between are needed otherwise we won't get any line break #}
|
2017-08-04 22:57:46 +08:00
|
|
|
|
|
|
|
{% set nb_mon = groups.get(mon_group_name, []) | length | int %}
|
|
|
|
{% set nb_client = groups.get(client_group_name, []) | length | int %}
|
|
|
|
{% set nb_osd = groups.get(osd_group_name, []) | length | int %}
|
2019-01-25 03:49:09 +08:00
|
|
|
{% if inventory_hostname in groups.get(client_group_name, []) and not inventory_hostname == groups.get(client_group_name, []) | first %}
|
|
|
|
{% set ceph_release = hostvars[groups[client_group_name][0]]['ceph_release'] %}
|
|
|
|
{% endif %}
|
2017-08-04 22:57:46 +08:00
|
|
|
|
|
|
|
{% if nb_mon > 0 and inventory_hostname in groups.get(mon_group_name, []) %}
|
2016-11-08 23:58:35 +08:00
|
|
|
mon initial members = {% for host in groups[mon_group_name] %}
|
|
|
|
{% if hostvars[host]['ansible_fqdn'] is defined and mon_use_fqdn -%}
|
|
|
|
{{ hostvars[host]['ansible_fqdn'] }}
|
|
|
|
{%- elif hostvars[host]['ansible_hostname'] is defined -%}
|
|
|
|
{{ hostvars[host]['ansible_hostname'] }}
|
|
|
|
{%- endif %}
|
|
|
|
{%- if not loop.last %},{% endif %}
|
|
|
|
{% endfor %}
|
2019-03-08 06:14:12 +08:00
|
|
|
|
|
|
|
osd pool default crush rule = {{ osd_pool_default_crush_rule | default(ceph_osd_pool_default_crush_rule) }}
|
2016-08-13 08:45:55 +08:00
|
|
|
{% endif %}
|
2014-11-10 21:50:19 +08:00
|
|
|
|
2016-05-27 22:37:07 +08:00
|
|
|
fsid = {{ fsid }}
|
2018-10-03 22:09:33 +08:00
|
|
|
{% if containerized_deployment %}
|
2018-01-09 21:34:09 +08:00
|
|
|
log file = /dev/null
|
2018-07-05 20:10:33 +08:00
|
|
|
mon cluster log file = /dev/null
|
2018-10-03 22:09:33 +08:00
|
|
|
{% endif %}
|
2019-01-21 19:08:56 +08:00
|
|
|
{% if ceph_release not in ['jewel', 'kraken', 'luminous', 'mimic'] %}
|
|
|
|
{% set mon_host_v1_suffix = ":6789" %}
|
|
|
|
{% set mon_host_v2_suffix = ":3300" %}
|
|
|
|
{% endif %}
|
2017-08-04 22:57:46 +08:00
|
|
|
mon host = {% if nb_mon > 0 %}
|
2018-10-03 22:09:33 +08:00
|
|
|
{% for host in _monitor_addresses -%}
|
2019-03-20 20:22:46 +08:00
|
|
|
{% if msgr2_migration | default(False) or not rolling_update %}
|
2019-01-21 19:08:56 +08:00
|
|
|
[{{ "v2:" + host.addr + mon_host_v2_suffix }},{{ "v1:" + host.addr + mon_host_v1_suffix }}]
|
2019-03-20 20:22:46 +08:00
|
|
|
{%- else -%}
|
|
|
|
{{ host.addr }}
|
|
|
|
{%- endif %}
|
2018-10-03 22:09:33 +08:00
|
|
|
{%- if not loop.last -%},{%- endif %}
|
|
|
|
{%- endfor %}
|
|
|
|
{% elif nb_mon == 0 and inventory_hostname in groups.get(client_group_name, []) %}
|
|
|
|
{{ external_cluster_mon_ips }}
|
2016-05-27 22:37:07 +08:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if public_network is defined %}
|
2018-01-30 21:39:58 +08:00
|
|
|
public network = {{ public_network | regex_replace(' ', '') }}
|
2016-05-27 22:37:07 +08:00
|
|
|
{% endif %}
|
|
|
|
{% if cluster_network is defined %}
|
2018-01-30 21:39:58 +08:00
|
|
|
cluster network = {{ cluster_network | regex_replace(' ', '') }}
|
2016-05-27 22:37:07 +08:00
|
|
|
{% endif %}
|
2017-05-11 01:00:41 +08:00
|
|
|
{% if rgw_override_bucket_index_max_shards is defined %}
|
|
|
|
rgw override bucket index max shards = {{ rgw_override_bucket_index_max_shards }}
|
|
|
|
{% endif %}
|
|
|
|
{% if rgw_bucket_default_quota_max_objects is defined %}
|
|
|
|
rgw bucket default quota max objects = {{ rgw_bucket_default_quota_max_objects }}
|
|
|
|
{% endif %}
|
2016-05-27 22:37:07 +08:00
|
|
|
|
2017-08-04 22:57:46 +08:00
|
|
|
{% if inventory_hostname in groups.get(client_group_name, []) %}
|
2016-05-27 22:37:07 +08:00
|
|
|
[client.libvirt]
|
|
|
|
admin socket = {{ rbd_client_admin_socket_path }}/$cluster-$type.$id.$pid.$cctid.asok # must be writable by QEMU and allowed by SELinux or AppArmor
|
|
|
|
log file = {{ rbd_client_log_file }} # must be writable by QEMU and allowed by SELinux or AppArmor
|
2017-08-04 22:57:46 +08:00
|
|
|
{% endif %}
|
2014-03-04 02:08:51 +08:00
|
|
|
|
2017-08-04 22:57:46 +08:00
|
|
|
{% if inventory_hostname in groups.get(osd_group_name, []) %}
|
2017-09-21 00:14:23 +08:00
|
|
|
{% if osd_objectstore == 'filestore' %}
|
2014-03-04 02:08:51 +08:00
|
|
|
[osd]
|
2015-12-16 23:11:14 +08:00
|
|
|
osd mkfs type = {{ osd_mkfs_type }}
|
|
|
|
osd mkfs options xfs = {{ osd_mkfs_options_xfs }}
|
|
|
|
osd mount options xfs = {{ osd_mount_options_xfs }}
|
|
|
|
osd journal size = {{ journal_size }}
|
2016-02-20 05:06:12 +08:00
|
|
|
{% if filestore_xattr_use_omap != None %}
|
|
|
|
filestore xattr use omap = {{ filestore_xattr_use_omap }}
|
|
|
|
{% elif osd_mkfs_type == "ext4" %}
|
|
|
|
filestore xattr use omap = true
|
|
|
|
{# else, default is false #}
|
|
|
|
{% endif %}
|
2017-08-04 22:57:46 +08:00
|
|
|
{% endif %}
|
2018-09-11 01:23:20 +08:00
|
|
|
{% if osd_objectstore == 'bluestore' %}
|
2018-10-03 22:09:33 +08:00
|
|
|
{% set _num_osds = num_osds | default(0) | int %}
|
2018-09-11 01:23:20 +08:00
|
|
|
[osd]
|
|
|
|
{% if is_hci and _num_osds > 0 %}
|
2018-11-29 17:16:52 +08:00
|
|
|
{# hci_safety_factor is the safety factor for HCI deployments #}
|
|
|
|
{% if ansible_memtotal_mb * 1048576 * hci_safety_factor / _num_osds > osd_memory_target %}
|
2018-11-21 21:38:25 +08:00
|
|
|
{% set _osd_memory_target = (ansible_memtotal_mb * 1048576 * hci_safety_factor / _num_osds) | int %}
|
2018-09-11 01:23:20 +08:00
|
|
|
{% endif %}
|
|
|
|
{% elif _num_osds > 0 %}
|
2018-11-29 17:16:52 +08:00
|
|
|
{# non_hci_safety_factor is the safety factor for dedicated nodes #}
|
|
|
|
{% if ansible_memtotal_mb * 1048576 * non_hci_safety_factor / _num_osds > osd_memory_target %}
|
2018-11-21 21:38:25 +08:00
|
|
|
{% set _osd_memory_target = (ansible_memtotal_mb * 1048576 * non_hci_safety_factor / _num_osds) | int %}
|
2018-09-11 01:23:20 +08:00
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
osd memory target = {{ _osd_memory_target | default(osd_memory_target) }}
|
|
|
|
{% endif %}
|
2017-09-21 00:14:23 +08:00
|
|
|
{% endif %}
|
2014-08-30 08:58:27 +08:00
|
|
|
|
2017-10-08 21:16:40 +08:00
|
|
|
{% if inventory_hostname in groups.get(rgw_group_name, []) %}
|
2015-06-11 08:42:41 +08:00
|
|
|
{% for host in groups[rgw_group_name] %}
|
2018-09-19 00:10:57 +08:00
|
|
|
{% set _rgw_hostname = hostvars[host]['rgw_hostname'] | default(hostvars[host]['ansible_hostname']) %}
|
2018-08-09 17:03:32 +08:00
|
|
|
{# {{ hostvars[host]['rgw_hostname'] }} for backward compatibility, fqdn issues. See bz1580408 #}
|
2018-11-09 08:56:57 +08:00
|
|
|
{% if hostvars[host]['rgw_instances'] is defined %}
|
|
|
|
{% for instance in hostvars[host]['rgw_instances'] %}
|
|
|
|
[client.rgw.{{ _rgw_hostname + '.' + instance['instance_name'] }}]
|
2018-09-19 00:10:57 +08:00
|
|
|
host = {{ _rgw_hostname }}
|
2018-11-09 08:56:57 +08:00
|
|
|
keyring = /var/lib/ceph/radosgw/{{ cluster }}-rgw.{{ _rgw_hostname + '.' + instance['instance_name'] }}/keyring
|
|
|
|
log file = /var/log/ceph/{{ cluster }}-rgw-{{ hostvars[host]['ansible_hostname'] + '.' + instance['instance_name'] }}.log
|
|
|
|
rgw frontends = {{ radosgw_frontend_type }} {{ 'port' if radosgw_frontend_type == 'civetweb' else 'endpoint' }}={{ instance['radosgw_address'] }}:{{ instance['radosgw_frontend_port'] }} {{ radosgw_frontend_options }}
|
2019-02-26 22:16:37 +08:00
|
|
|
{% if 'num_threads' not in radosgw_frontend_options %}
|
|
|
|
rgw thread pool size = {{ radosgw_thread_pool_size }}
|
|
|
|
{% endif %}
|
2018-11-09 08:56:57 +08:00
|
|
|
{% endfor %}
|
|
|
|
{% 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
|
|
|
|
2017-10-25 21:45:37 +08:00
|
|
|
{% if inventory_hostname in groups.get(nfs_group_name, []) and inventory_hostname not in groups.get(rgw_group_name, []) %}
|
2017-09-11 11:34:36 +08:00
|
|
|
{% for host in groups[nfs_group_name] %}
|
2018-09-19 00:10:57 +08:00
|
|
|
{% set _rgw_hostname = hostvars[host]['rgw_hostname'] | default(hostvars[host]['ansible_hostname']) %}
|
2017-09-11 11:34:36 +08:00
|
|
|
{% if nfs_obj_gw %}
|
2018-09-19 00:10:57 +08:00
|
|
|
[client.rgw.{{ _rgw_hostname }}]
|
|
|
|
host = {{ _rgw_hostname }}
|
|
|
|
keyring = /var/lib/ceph/radosgw/{{ cluster }}-rgw.{{ _rgw_hostname }}/keyring
|
2017-09-11 11:34:36 +08:00
|
|
|
log file = /var/log/ceph/{{ cluster }}-rgw-{{ hostvars[host]['ansible_hostname'] }}.log
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|