afdd11b9a2
Useful api_interface_address variable has been define here: https://github.com/openstack/kolla-ansible/blob/master/ansible/group_vars/all.yml#L57 In order to simplify codebase we must use it as much as possible. Change-Id: I18fec19bf69e05a22a4142a9cd1165eccd022455
31 lines
790 B
Django/Jinja
31 lines
790 B
Django/Jinja
[DEFAULT]
|
|
bind_ip = {{ hostvars[inventory_hostname]['ansible_' + storage_interface]['ipv4']['address'] }}
|
|
bind_port = {{ swift_account_server_port }}
|
|
devices = {{ swift_devices_mount_point }}
|
|
mount_check = false
|
|
log_udp_host = {{ api_interface_address }}
|
|
log_udp_port = {{ fluentd_syslog_port }}
|
|
log_name = {{ service_name }}
|
|
log_facility = LOG_LOCAL0
|
|
log_level = INFO
|
|
workers = {{ openstack_service_workers }}
|
|
|
|
[pipeline:main]
|
|
pipeline = account-server
|
|
|
|
[app:account-server]
|
|
use = egg:swift#account
|
|
|
|
{% if service_name == 'swift-account-auditor' %}
|
|
[account-auditor]
|
|
{% endif %}
|
|
|
|
{% if service_name == 'swift-account-replicator' %}
|
|
[account-replicator]
|
|
sync_module = {replication_ip}:{meta}:account
|
|
{% endif %}
|
|
|
|
{% if service_name == 'swift-account-reaper' %}
|
|
[account-reaper]
|
|
{% endif %}
|