Puppet Class: swift::config

Defined in:
manifests/config.pp

Overview

Class: swift::config

This class is used to manage arbitrary Swift configurations.

Parameters

swift_config

(optional) Allow configuration of arbitrary Swift configurations. The value is an hash of swift_config resources. Example: { ‘DEFAULT/foo’ => { value => ‘fooValue’},

'DEFAULT/bar' => { value => 'barValue'}

} In yaml format, Example: swift_config:

DEFAULT/foo:
  value: fooValue
DEFAULT/bar:
  value: barValue

NOTE: The configuration MUST NOT be already handled by this module or Puppet catalog compilation will fail with duplicate resources.

swift_container_sync_realms_config

(optional) Allow configuration for specifying the allowable clusters and their information.

swift_proxy_config

(optional) Allow configuration of arbitrary Swift Proxy configurations. The value is an hash of swift_proxy_config resources.

Parameters:

  • swift_config (Any) (defaults to: {})
  • swift_container_sync_realms_config (Any) (defaults to: {})
  • swift_proxy_config (Any) (defaults to: {})


31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'manifests/config.pp', line 31

class swift::config (
  $swift_config                       = {},
  $swift_container_sync_realms_config = {},
  $swift_proxy_config                 = {},
) {

  include swift::deps

  validate_legacy(Hash, 'validate_hash', $swift_config)
  validate_legacy(Hash, 'validate_hash', $swift_container_sync_realms_config)
  validate_legacy(Hash, 'validate_hash', $swift_proxy_config)

  create_resources('swift_config', $swift_config)
  create_resources('swift_container_sync_realms_config', $swift_container_sync_realms_config)
  create_resources('swift_proxy_config', $swift_proxy_config)
}