ed82afa8e9
Convert config creation from a playbook to an action_plugin. This reduces the complexity and confusion while retaining the same augment structure and flexibility. This allows us to remove the 0-byte files as requirements. They will still be used if they are present (this means we require additional documentation around them). DocImpact Closes-Bug: #1528430 Change-Id: I2c789f6be9f195c7771ca093a6d59499564b4740
27 lines
639 B
Django/Jinja
27 lines
639 B
Django/Jinja
[DEFAULT]
|
|
bind_ip = {{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}
|
|
bind_port = {{ swift_container_server_port }}
|
|
devices = {{ swift_devices_mount_point }}
|
|
mount_check = false
|
|
log_name = {{ service_name }}
|
|
log_facility = LOG_LOCAL0
|
|
log_level = warning
|
|
|
|
[pipeline:main]
|
|
pipeline = container-server
|
|
|
|
[app:container-server]
|
|
use = egg:swift#container
|
|
|
|
{% if service_name == 'swift-container-auditor' %}
|
|
[container-auditor]
|
|
{% endif %}
|
|
|
|
{% if service_name == 'swift-container-replicator' %}
|
|
[container-replicator]
|
|
{% endif %}
|
|
|
|
{% if service_name == 'swift-container-updater' %}
|
|
[container-updater]
|
|
{% endif %}
|