Puppet Class: swift::proxy::bulk
- Defined in:
- manifests/proxy/bulk.pp
Overview
41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'manifests/proxy/bulk.pp', line 41
class swift::proxy::bulk(
$max_containers_per_extraction = '10000',
$max_failed_extractions = '1000',
$max_deletes_per_request = '10000',
$yield_frequency = '60',
) {
concat::fragment { 'swift_bulk':
target => '/etc/swift/proxy-server.conf',
content => template('swift/proxy/bulk.conf.erb'),
order => '21',
}
}
|