Merge "Fix a typo"
[apex-tripleo-heat-templates.git] / puppet / services / swift-ringbuilder.yaml
1 heat_template_version: ocata
2
3 description: >
4   OpenStack Swift Ringbuilder
5
6 parameters:
7   ServiceNetMap:
8     default: {}
9     description: Mapping of service_name -> network name. Typically set
10                  via parameter_defaults in the resource registry.  This
11                  mapping overrides those in ServiceNetMapDefaults.
12     type: json
13   DefaultPasswords:
14     default: {}
15     type: json
16   EndpointMap:
17     default: {}
18     description: Mapping of service endpoint -> protocol. Typically set
19                  via parameter_defaults in the resource registry.
20     type: json
21   SwiftMinPartHours:
22     type: number
23     default: 1
24     description: The minimum time (in hours) before a partition in a ring can be moved following a rebalance.
25   SwiftPartPower:
26     default: 10
27     description: Partition Power to use when building Swift rings
28     type: number
29   SwiftRingBuild:
30     default: true
31     description: Whether to manage Swift rings or not
32     type: boolean
33   SwiftReplicas:
34     type: number
35     default: 3
36     description: How many replicas to use in the swift rings.
37   SwiftRawDisks:
38     default: {}
39     description: 'A hash of additional raw devices to use as Swift backend (eg. {sdb: {}})'
40     type: json
41   SwiftUseLocalDir:
42     default: true
43     description: 'Use a local directory for Swift storage services when building rings'
44     type: boolean
45
46 conditions:
47   swift_use_local_dir:
48     and:
49     - equals:
50       - get_param: SwiftUseLocalDir
51       - true
52     - equals:
53       - get_param: SwiftRawDisks
54       - {}
55
56 outputs:
57   role_data:
58     description: Role data for Swift Ringbuilder configuration.
59     value:
60       service_name: swift_ringbuilder
61       config_settings:
62         tripleo::profile::base::swift::ringbuilder::build_ring: {get_param: SwiftRingBuild}
63         tripleo::profile::base::swift::ringbuilder::replicas: {get_param: SwiftReplicas}
64         tripleo::profile::base::swift::ringbuilder::part_power: {get_param: SwiftPartPower}
65         tripleo::profile::base::swift::ringbuilder::min_part_hours: {get_param: SwiftMinPartHours}
66         tripleo::profile::base::swift::ringbuilder::raw_disk_prefix: 'r1z1-'
67         tripleo::profile::base::swift::ringbuilder::raw_disks:
68           yaql:
69             expression: $.data.raw_disk_lists.flatten()
70             data:
71               raw_disk_lists:
72               - {if: [swift_use_local_dir, [':%PORT%/d1'], []]}
73               - repeat:
74                   template: ':%PORT%/DEVICE'
75                   for_each:
76                     DEVICE: {get_param: SwiftRawDisks}
77       step_config: |
78         include ::tripleo::profile::base::swift::ringbuilder