5c70b6abd00e8f151dfab333832242e6bda05126
[apex-tripleo-heat-templates.git] / puppet / services / swift-ringbuilder.yaml
1 heat_template_version: 2016-10-14
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 outputs:
47   role_data:
48     description: Role data for Swift Ringbuilder configuration.
49     value:
50       service_name: swift_ringbuilder
51       config_settings:
52         tripleo::profile::base::swift::ringbuilder::build_ring: {get_param: SwiftRingBuild}
53         tripleo::profile::base::swift::ringbuilder::replicas: {get_param: SwiftReplicas}
54         tripleo::profile::base::swift::ringbuilder::part_power: {get_param: SwiftPartPower}
55         tripleo::profile::base::swift::ringbuilder::min_part_hours: {get_param: SwiftMinPartHours}
56         tripleo::profile::base::swift::ringbuilder::raw_disk_prefix: 'r1z1-'
57         tripleo::profile::base::swift::ringbuilder::raw_disks:
58           yaql:
59             expression: $.data.raw_disk_lists.flatten()
60             data:
61               raw_disk_lists:
62               - {if: [{get_param: SwiftUseLocalDir}, [':%PORT%/d1'], []]}
63               - repeat:
64                   template: ':%PORT%/DEVICE'
65                   for_each:
66                     DEVICE: {get_param: SwiftRawDisks}
67       step_config: |
68         include ::tripleo::profile::base::swift::ringbuilder