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
30 lines
907 B
Django/Jinja
30 lines
907 B
Django/Jinja
{
|
|
"command": "swift-object-replicator /etc/swift/object-replicator.conf --verbose",
|
|
"config_files": [
|
|
{
|
|
"source": "/var/lib/kolla/swift/container.ring.gz",
|
|
"dest": "/etc/swift/container.ring.gz",
|
|
"owner": "swift",
|
|
"perm": "0640"
|
|
},
|
|
{
|
|
"source": "/var/lib/kolla/swift/object.ring.gz",
|
|
"dest": "/etc/swift/object.ring.gz",
|
|
"owner": "swift",
|
|
"perm": "0640"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/swift.conf",
|
|
"dest": "/etc/swift/swift.conf",
|
|
"owner": "swift",
|
|
"perm": "0640"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/object-replicator.conf",
|
|
"dest": "/etc/swift/object-replicator.conf",
|
|
"owner": "swift",
|
|
"perm": "0640"
|
|
}
|
|
]
|
|
}
|