
Add possibility to configure container_sync middleware. Also allow to configure swift container-sync-realms, which specifying the allowable clusters and their information, which is required for container_sync. Change-Id: I183841cca3daf72a30db160b88c9e3a9335ad7dc
15 lines
320 B
Puppet
15 lines
320 B
Puppet
#
|
|
# Configure Swift Container Sync
|
|
#
|
|
# == Authors
|
|
#
|
|
# Denis Egorenko <degorenko@mirantis.com>
|
|
#
|
|
class swift::proxy::container_sync() {
|
|
concat::fragment { 'swift_container_sync':
|
|
target => '/etc/swift/proxy-server.conf',
|
|
content => template('swift/proxy/container_sync.conf.erb'),
|
|
order => '82',
|
|
}
|
|
}
|