#jinja2: trim_blocks: "true", lstrip_blocks: "true" # {{ ansible_managed }} [global] {% if not cephx %} auth cluster required = none auth service required = none auth client required = none {% endif %} {% if ip_version == 'ipv6' %} ms bind ipv6 = true ms bind ipv4 = false {% endif %} {% if common_single_host_mode is defined and common_single_host_mode %} osd crush chooseleaf type = 0 {% endif %} {# NOTE (leseb): the blank lines in-between are needed otherwise we won't get any line break #} {% 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 %} {% if inventory_hostname in groups.get(client_group_name, []) and not inventory_hostname == groups.get(client_group_name, []) | first %} {% endif %} {% if nb_mon > 0 and inventory_hostname in groups.get(mon_group_name, []) %} mon initial members = {% for host in groups[mon_group_name] %} {% if hostvars[host]['ansible_hostname'] is defined -%} {{ hostvars[host]['ansible_hostname'] }} {%- endif %} {%- if not loop.last %},{% endif %} {% endfor %} osd pool default crush rule = {{ osd_pool_default_crush_rule }} {% endif %} fsid = {{ fsid }} mon host = {% if nb_mon > 0 %} {% for host in _monitor_addresses -%} {% if msgr2_migration | default(False) %} [{{ "v2:" + host.addr + mon_host_v2.suffix }},{{ "v1:" + host.addr + mon_host_v1.suffix }}] {%- elif not msgr2_migration | default(False) and rolling_update -%} {{ host.addr }} {%- else -%} {% if mon_host_v1.enabled %} {% set _v1 = ',v1:' + host.addr + mon_host_v1.suffix %} {% endif %} [{{ "v2:" + host.addr + mon_host_v2.suffix }}{{ _v1 | default('') }}] {%- endif %} {%- if not loop.last -%},{%- endif %} {%- endfor %} {% elif nb_mon == 0 %} {{ external_cluster_mon_ips }} {% endif %} {% if public_network is defined %} public network = {{ public_network | regex_replace(' ', '') }} {% endif %} {% if cluster_network is defined %} cluster network = {{ cluster_network | regex_replace(' ', '') }} {% endif %} {% 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 %} {% if inventory_hostname in groups.get(client_group_name, []) %} [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 {% endif %} {% if inventory_hostname in groups.get(osd_group_name, []) %} {% if osd_objectstore == 'filestore' %} [osd] 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 }} {% 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 %} {% endif %} {% if osd_objectstore == 'bluestore' %} {% set _num_osds = num_osds | default(0) | int %} [osd] {% if is_hci and _num_osds > 0 %} {# hci_safety_factor is the safety factor for HCI deployments #} {% if ansible_memtotal_mb * 1048576 * hci_safety_factor / _num_osds > osd_memory_target %} {% set _osd_memory_target = (ansible_memtotal_mb * 1048576 * hci_safety_factor / _num_osds) | int %} {% endif %} {% elif _num_osds > 0 %} {# 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 %} {% set _osd_memory_target = (ansible_memtotal_mb * 1048576 * non_hci_safety_factor / _num_osds) | int %} {% endif %} {% endif %} osd memory target = {{ _osd_memory_target | default(osd_memory_target) }} {% endif %} {% endif %} {% if inventory_hostname in groups.get(rgw_group_name, []) %} {% set _rgw_hostname = hostvars[inventory_hostname]['rgw_hostname'] | default(hostvars[inventory_hostname]['ansible_hostname']) %} {# {{ hostvars[host]['rgw_hostname'] }} for backward compatibility, fqdn issues. See bz1580408 #} {% if hostvars[inventory_hostname]['rgw_instances'] is defined %} {% for instance in hostvars[inventory_hostname]['rgw_instances'] %} [client.rgw.{{ _rgw_hostname + '.' + instance['instance_name'] }}] host = {{ _rgw_hostname }} keyring = /var/lib/ceph/radosgw/{{ cluster }}-rgw.{{ _rgw_hostname + '.' + instance['instance_name'] }}/keyring log file = /var/log/ceph/{{ cluster }}-rgw-{{ hostvars[inventory_hostname]['ansible_hostname'] + '.' + instance['instance_name'] }}.log {% set _rgw_binding_socket = instance['radosgw_address'] | default(_radosgw_address) | string + ':' + instance['radosgw_frontend_port'] | default(radosgw_frontend_port) | string %} {%- macro frontend_line(frontend_type) -%} {%- if frontend_type == 'civetweb' -%} {{ radosgw_frontend_type }} port={{ _rgw_binding_socket }}{{ 's ssl_certificate='+radosgw_frontend_ssl_certificate if radosgw_frontend_ssl_certificate else '' }} {%- elif frontend_type == 'beast' -%} {{ radosgw_frontend_type }} {{ 'ssl_' if radosgw_frontend_ssl_certificate else '' }}endpoint={{ _rgw_binding_socket }}{{ ' ssl_certificate='+radosgw_frontend_ssl_certificate if radosgw_frontend_ssl_certificate else '' }} {%- endif -%} {%- endmacro -%} rgw frontends = {{ frontend_line(radosgw_frontend_type) }} {{ radosgw_frontend_options }} {% if 'num_threads' not in radosgw_frontend_options %} rgw thread pool size = {{ radosgw_thread_pool_size }} {% endif %} {% if rgw_multisite | bool %} rgw_realm = {{ instance['rgw_realm'] }} rgw_zonegroup = {{ instance['rgw_zonegroup'] }} rgw_zone = {{ instance['rgw_zone'] }} {% endif %} {% endfor %} {% endif %} {% endif %} {% if inventory_hostname in groups.get(nfs_group_name, []) and inventory_hostname not in groups.get(rgw_group_name, []) %} {% for host in groups[nfs_group_name] %} {% set _rgw_hostname = hostvars[host]['rgw_hostname'] | default(hostvars[host]['ansible_hostname']) %} {% if nfs_obj_gw %} [client.rgw.{{ _rgw_hostname }}] host = {{ _rgw_hostname }} keyring = /var/lib/ceph/radosgw/{{ cluster }}-rgw.{{ _rgw_hostname }}/keyring log file = /var/log/ceph/{{ cluster }}-rgw-{{ hostvars[host]['ansible_hostname'] }}.log {% endif %} {% endfor %} {% endif %}