Change flat network name for nosdn fdio scenario
[apex-tripleo-heat-templates.git] / puppet / services / octavia-health-manager.yaml
1 heat_template_version: pike
2
3 description: >
4   OpenStack Octavia Health Manager service.
5
6 parameters:
7   ServiceData:
8     default: {}
9     description: Dictionary packing service data
10     type: json
11   ServiceNetMap:
12     default: {}
13     description: Mapping of service_name -> network name. Typically set
14                  via parameter_defaults in the resource registry.  This
15                  mapping overrides those in ServiceNetMapDefaults.
16     type: json
17   DefaultPasswords:
18     default: {}
19     type: json
20   RoleName:
21     default: ''
22     description: Role name on which the service is applied
23     type: string
24   RoleParameters:
25     default: {}
26     description: Parameters specific to the role
27     type: json
28   EndpointMap:
29     default: {}
30     description: Mapping of service endpoint -> protocol. Typically set
31                  via parameter_defaults in the resource registry.
32     type: json
33   MonitoringSubscriptionOctaviaHealthManager:
34     default: 'overcloud-octavia-health-manager'
35     type: string
36   OctaviaHealthManagerLoggingSource:
37     type: json
38     default:
39       tag: openstack.octavia.health-manager
40       path: /var/log/octavia/health-manager.log
41   OctaviaHeartbeatKey:
42     type: string
43     description: Key to identify heartbeat messages for amphorae.
44     hidden: true
45
46 resources:
47
48   OctaviaBase:
49     type: ./octavia-base.yaml
50     properties:
51       ServiceData: {get_param: ServiceData}
52       ServiceNetMap: {get_param: ServiceNetMap}
53       DefaultPasswords: {get_param: DefaultPasswords}
54       EndpointMap: {get_param: EndpointMap}
55       RoleName: {get_param: RoleName}
56       RoleParameters: {get_param: RoleParameters}
57
58 outputs:
59   role_data:
60     description: Role data for the Octavia Health Manager service.
61     value:
62       service_name: octavia_health_manager
63       monitoring_subscription: {get_param: MonitoringSubscriptionOctaviaHealthManager}
64       logging_source: {get_param: OctaviaHealthManagerLoggingSource}
65       logging_groups:
66         - octavia
67       config_settings:
68         map_merge:
69           - get_attr: [OctaviaBase, role_data, config_settings]
70           - octavia::health_manager::heartbeat_key: {get_param: OctaviaHeartbeatKey}
71             octavia::health_manager::event_streamer_driver: 'queue_event_streamer'
72       step_config: |
73         include tripleo::profile::base::octavia::health_manager
74
75
76