2016-12-23 11:43:39 +00:00
|
|
|
heat_template_version: ocata
|
2016-06-23 16:09:14 -04:00
|
|
|
|
|
|
|
description: >
|
|
|
|
OpenStack Ceilometer Central Agent service configured with Puppet
|
|
|
|
|
|
|
|
parameters:
|
2016-08-11 23:07:46 +02: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 09:26:05 -04:00
|
|
|
DefaultPasswords:
|
|
|
|
default: {}
|
|
|
|
type: json
|
2016-06-23 16:09:14 -04:00
|
|
|
EndpointMap:
|
|
|
|
default: {}
|
|
|
|
description: Mapping of service endpoint -> protocol. Typically set
|
|
|
|
via parameter_defaults in the resource registry.
|
|
|
|
type: json
|
|
|
|
RedisPassword:
|
|
|
|
description: The password for the redis service account.
|
|
|
|
type: string
|
|
|
|
hidden: true
|
2016-06-09 15:39:22 +02:00
|
|
|
MonitoringSubscriptionCeilometerCentral:
|
|
|
|
default: 'overcloud-ceilometer-agent-central'
|
|
|
|
type: string
|
2016-08-09 16:20:18 -04:00
|
|
|
CeilometerAgentCentralLoggingSource:
|
|
|
|
type: json
|
|
|
|
default:
|
|
|
|
tag: openstack.ceilometer.agent.central
|
|
|
|
path: /var/log/ceilometer/central.log
|
2016-06-23 16:09:14 -04:00
|
|
|
|
|
|
|
resources:
|
|
|
|
CeilometerServiceBase:
|
|
|
|
type: ./ceilometer-base.yaml
|
|
|
|
properties:
|
2016-08-11 23:07:46 +02:00
|
|
|
ServiceNetMap: {get_param: ServiceNetMap}
|
2016-08-17 09:26:05 -04:00
|
|
|
DefaultPasswords: {get_param: DefaultPasswords}
|
2016-06-23 16:09:14 -04:00
|
|
|
EndpointMap: {get_param: EndpointMap}
|
|
|
|
|
|
|
|
outputs:
|
|
|
|
role_data:
|
|
|
|
description: Role data for the Ceilometer Central Agent role.
|
|
|
|
value:
|
2016-07-28 10:30:10 +01:00
|
|
|
service_name: ceilometer_agent_central
|
2016-06-09 15:39:22 +02:00
|
|
|
monitoring_subscription: {get_param: MonitoringSubscriptionCeilometerCentral}
|
2016-08-09 16:20:18 -04:00
|
|
|
logging_source: {get_param: CeilometerAgentCentralLoggingSource}
|
|
|
|
logging_groups:
|
|
|
|
- ceilometer
|
2016-06-23 16:09:14 -04:00
|
|
|
config_settings:
|
|
|
|
map_merge:
|
|
|
|
- get_attr: [CeilometerServiceBase, role_data, config_settings]
|
2016-09-30 09:48:56 -04:00
|
|
|
- ceilometer_redis_password: {get_param: RedisPassword}
|
2016-06-23 16:09:14 -04:00
|
|
|
step_config: |
|
|
|
|
include ::tripleo::profile::base::ceilometer::agent::central
|