bbf58f5723
Remove the {meta} from the default settings in the account, container and object services templates. Change-Id: I079fddf8feb020bed93bf44b8aaec0882823e15c Closes-Bug: #1862058
53 lines
1.3 KiB
Django/Jinja
53 lines
1.3 KiB
Django/Jinja
{% set network = 'swift_replication' if 'replicat' in service_name else 'swift_storage' %}
|
|
[DEFAULT]
|
|
bind_ip = {{ network | kolla_address }}
|
|
bind_port = {{ swift_object_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 = {{ openstack_service_workers }}
|
|
|
|
[pipeline:main]
|
|
{% if service_name == 'swift-object-expirer' %}
|
|
pipeline = proxy-server
|
|
{% else %}
|
|
pipeline = {% if enable_swift_recon %}recon {% endif %}object-server
|
|
{% endif %}
|
|
|
|
{% if enable_swift_recon %}
|
|
[filter:recon]
|
|
use = egg:swift#recon
|
|
recon_cache_path = /var/cache/swift
|
|
{% endif %}
|
|
|
|
[app:object-server]
|
|
use = egg:swift#object
|
|
{% if swift_has_replication_network %}
|
|
replication_server = {{ service_name == 'swift-object-replication-server' }}
|
|
{% endif %}
|
|
|
|
{% if service_name == 'swift-object-auditor' %}
|
|
[object-auditor]
|
|
{% endif %}
|
|
|
|
[object-replicator]
|
|
{% if service_name == 'swift-object-replicator' %}
|
|
rsync_module = {replication_ip}::object
|
|
{% endif %}
|
|
|
|
{% if service_name == 'swift-object-updater' %}
|
|
[object-updater]
|
|
{% endif %}
|
|
|
|
{% if service_name == 'swift-object-expirer' %}
|
|
[object-expirer]
|
|
|
|
[app:proxy-server]
|
|
use = egg:swift#proxy
|
|
{% endif %}
|