Puppet Class: magnum::docker_registry

Defined in:
manifests/docker_registry.pp

Overview

Class: magnum::docker_registry

Setup magnum docker_registry.

Parameters

swift_region

(optional) Region name of Swift. Defaults to $facts

swift_registry_container

(optional) Name of the container in Swift which docker registry stores images in. Defaults to $facts

Parameters:

  • swift_region (Any) (defaults to: $facts['os_service_default'])
  • swift_registry_container (Any) (defaults to: $facts['os_service_default'])


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;
  }
}