Puppet Class: magnum::docker_registry
- Defined in:
- manifests/docker_registry.pp
Overview
16 17 18 19 20 21 22 23 24 25 |
# File 'manifests/docker_registry.pp', line 16
class magnum::docker_registry (
$swift_region = $facts['os_service_default'],
$swift_registry_container = $facts['os_service_default'],
) {
magnum_config {
'docker_registry/swift_region': value => $swift_region;
'docker_registry/swift_registry_container': value => $swift_registry_container;
}
}
|