4cac847f6c
With the current templates, the rsync_module is left as the default value, which has not {meta} included. Setting sync_module has no effect. References: https://github.com/openstack/swift/blob/master/etc/container-server.conf-sample https://github.com/openstack/swift/blob/master/swift/obj/replicator.py#89 Change these templates to set rsync_module instead. Change-Id: I14773a09013b90dd2dd68110173eab1d3ccec3de
43 lines
1003 B
Django/Jinja
43 lines
1003 B
Django/Jinja
[DEFAULT]
|
|
bind_ip = {{ hostvars[inventory_hostname]['ansible_' + storage_interface]['ipv4']['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 = INFO
|
|
workers = {{ openstack_service_workers }}
|
|
|
|
[pipeline:main]
|
|
{% if service_name == 'swift-object-expirer' %}
|
|
pipeline = proxy-server
|
|
{% else %}
|
|
pipeline = object-server
|
|
{% endif %}
|
|
|
|
[app:object-server]
|
|
use = egg:swift#object
|
|
|
|
{% if service_name == 'swift-object-auditor' %}
|
|
[object-auditor]
|
|
{% endif %}
|
|
|
|
[object-replicator]
|
|
{% if service_name == 'swift-object-replicator' %}
|
|
rsync_module = {replication_ip}:{meta}: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 %}
|