2016-05-05 11:55:09 +00:00
|
|
|
heat_template_version: 2016-04-08
|
|
|
|
|
|
|
|
description: >
|
|
|
|
Openstack Heat API service configured with Puppet
|
|
|
|
|
|
|
|
parameters:
|
2016-08-11 21:07:46 +00:00
|
|
|
ServiceNetMap:
|
|
|
|
default: {}
|
|
|
|
description: Mapping of service_name -> network name. Typically set
|
|
|
|
via parameter_defaults in the resource registry. This
|
|
|
|
mapping overrides those in ServiceNetMapDefaults.
|
|
|
|
type: json
|
2016-08-17 13:26:05 +00:00
|
|
|
DefaultPasswords:
|
|
|
|
default: {}
|
|
|
|
type: json
|
2016-05-05 11:55:09 +00:00
|
|
|
EndpointMap:
|
|
|
|
default: {}
|
|
|
|
description: Mapping of service endpoint -> protocol. Typically set
|
|
|
|
via parameter_defaults in the resource registry.
|
|
|
|
type: json
|
|
|
|
HeatWorkers:
|
|
|
|
default: 0
|
|
|
|
description: Number of workers for Heat service.
|
|
|
|
type: number
|
|
|
|
HeatPassword:
|
|
|
|
description: The password for the Heat service and db account, used by the Heat services.
|
|
|
|
type: string
|
|
|
|
hidden: true
|
|
|
|
KeystoneRegion:
|
|
|
|
type: string
|
|
|
|
default: 'regionOne'
|
|
|
|
description: Keystone region for endpoint
|
2016-06-09 13:39:22 +00:00
|
|
|
MonitoringSubscriptionHeatApi:
|
|
|
|
default: 'overcloud-heat-api'
|
|
|
|
type: string
|
2016-05-05 11:55:09 +00:00
|
|
|
|
|
|
|
resources:
|
|
|
|
HeatBase:
|
|
|
|
type: ./heat-base.yaml
|
2016-08-11 21:07:46 +00:00
|
|
|
properties:
|
|
|
|
ServiceNetMap: {get_param: ServiceNetMap}
|
2016-08-17 13:26:05 +00:00
|
|
|
DefaultPasswords: {get_param: DefaultPasswords}
|
2016-08-11 21:07:46 +00:00
|
|
|
EndpointMap: {get_param: EndpointMap}
|
2016-05-05 11:55:09 +00:00
|
|
|
|
|
|
|
outputs:
|
|
|
|
role_data:
|
|
|
|
description: Role data for the Heat API role.
|
|
|
|
value:
|
2016-07-28 09:30:10 +00:00
|
|
|
service_name: heat_api
|
2016-06-09 13:39:22 +00:00
|
|
|
monitoring_subscription: {get_param: MonitoringSubscriptionHeatApi}
|
2016-05-05 11:55:09 +00:00
|
|
|
config_settings:
|
|
|
|
map_merge:
|
|
|
|
- get_attr: [HeatBase, role_data, config_settings]
|
|
|
|
- heat::api::workers: {get_param: HeatWorkers}
|
2016-08-08 13:55:11 +00:00
|
|
|
heat::keystone::auth::tenant: 'service'
|
2016-05-05 11:55:09 +00:00
|
|
|
heat::keystone::auth::public_url: {get_param: [EndpointMap, HeatPublic, uri]}
|
|
|
|
heat::keystone::auth::internal_url: {get_param: [EndpointMap, HeatInternal, uri]}
|
|
|
|
heat::keystone::auth::admin_url: {get_param: [EndpointMap, HeatAdmin, uri]}
|
|
|
|
heat::keystone::auth::password: {get_param: HeatPassword}
|
|
|
|
heat::keystone::auth::region: {get_param: KeystoneRegion}
|
2016-07-20 14:48:23 +00:00
|
|
|
tripleo.heat_api.firewall_rules:
|
|
|
|
'125 heat_api':
|
|
|
|
dport:
|
|
|
|
- 8004
|
|
|
|
- 13004
|
2016-08-24 18:02:13 +00:00
|
|
|
# NOTE: bind IP is found in Heat replacing the network name with the
|
|
|
|
# local node IP for the given network; replacement examples
|
|
|
|
# (eg. for internal_api):
|
|
|
|
# internal_api -> IP
|
|
|
|
# internal_api_uri -> [IP]
|
|
|
|
# internal_api_subnet - > IP/CIDR
|
|
|
|
heat::api::bind_host: {get_param: [ServiceNetMap, HeatApiNetwork]}
|
2016-05-05 11:55:09 +00:00
|
|
|
step_config: |
|
|
|
|
include ::tripleo::profile::base::heat::api
|