Convert SwiftDevicesAndProxyConfig to composable format
[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
42
43 outputs:
44   role_data:
45     description: Role data for Swift Ringbuilder configuration.
46     value:
47       service_name: swift_ringbuilder
48       config_settings:
49         tripleo::profile::base::swift::ringbuilder::build_ring: {get_param: SwiftRingBuild}
50         tripleo::profile::base::swift::ringbuilder::replicas: {get_param: SwiftReplicas}
51         tripleo::profile::base::swift::ringbuilder::raw_disk_prefix: 'r1z1-'
52         tripleo::profile::base::swift::ringbuilder::raw_disks:
53           yaql:
54             expression: $.data.raw_disk_lists.flatten()
55             data:
56               raw_disk_lists:
57               - [':%PORT%/d1']
58               - repeat:
59                   template: ':%PORT%/DEVICE'
60                   for_each:
61                     DEVICE: {get_param: SwiftRawDisks}
62         swift::ringbuilder::part_power: {get_param: SwiftPartPower}
63         swift::ringbuilder::min_part_hours: {get_param: SwiftMinPartHours}
64       step_config: |
65         include ::tripleo::profile::base::swift::ringbuilder