Michal Arbet 94765ab468 Fix boolean representation in all configurations
In the past, we agreed to use lowercase letters
for boolean representation. This patch implements
exactly that, just changing True -> true, False -> false.

Change-Id: Ia601d84283dd8bc45e56e1029106de8836139173
2025-03-13 18:19:27 +01:00

42 lines
1.1 KiB
Django/Jinja

{% set network = 'swift_replication' if 'replicat' in service_name else 'swift_storage' %}
[DEFAULT]
bind_ip = {{ network | kolla_address }}
bind_port = {{ swift_container_server_port }}
devices = {{ swift_devices_mount_point }}
mount_check = false
log_udp_host = {{ syslog_server }}
log_udp_port = {{ syslog_udp_port }}
log_name = {{ service_name }}
log_facility = {{ syslog_swift_facility }}
log_level = {{ swift_log_level }}
workers = {{ swift_container_workers }}
[pipeline:main]
pipeline = {% if enable_swift_recon %}recon {% endif %}container-server
{% if enable_swift_recon %}
[filter:recon]
use = egg:swift#recon
recon_cache_path = /var/cache/swift
{% endif %}
[app:container-server]
use = egg:swift#container
allow_versions = true
{% if swift_has_replication_network %}
replication_server = {{ service_name == 'swift-container-replication-server' }}
{% endif %}
{% if service_name == 'swift-container-auditor' %}
[container-auditor]
{% endif %}
{% if service_name == 'swift-container-replicator' %}
[container-replicator]
rsync_module = {replication_ip}::container
{% endif %}
{% if service_name == 'swift-container-updater' %}
[container-updater]
{% endif %}