Merge "Allow a fixed IP to be allocated to RedisVirtualIP"
[apex-tripleo-heat-templates.git] / puppet / services / swift-ringbuilder.yaml
1 heat_template_version: 2016-04-08
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
38 outputs:
39   role_data:
40     description: Role data for Swift Ringbuilder configuration.
41     value:
42       service_name: swift_ringbuilder
43       config_settings:
44         tripleo::profile::base::swift::ringbuilder::build_ring: {get_param: SwiftRingBuild}
45         tripleo::profile::base::swift::ringbuilder::replicas: {get_param: SwiftReplicas}
46         swift::ringbuilder::part_power: {get_param: SwiftPartPower}
47         swift::ringbuilder::min_part_hours: {get_param: SwiftMinPartHours}
48       step_config: |
49         include ::tripleo::profile::base::swift::ringbuilder