25ad7b8e1e
- adds possibility to install sensu-client on all nodes - each composable service has it's own subscription Co-Authored-By: Emilien Macchi <emilien@redhat.com> Co-Authored-By: Michele Baldessari <michele@redhat.com> Implements: blueprint tripleo-opstools-availability-monitoring Change-Id: I6a215763fd0f0015285b3573305d18d0f56c7770
69 lines
2.3 KiB
YAML
69 lines
2.3 KiB
YAML
heat_template_version: 2016-04-08
|
|
|
|
description: Sensu base service
|
|
|
|
parameters:
|
|
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
|
|
EndpointMap:
|
|
default: {}
|
|
description: Mapping of service endpoint -> protocol. Typically set
|
|
via parameter_defaults in the resource registry.
|
|
type: json
|
|
DefaultPasswords:
|
|
default: {}
|
|
type: json
|
|
MonitoringRabbitHost:
|
|
description: RabbitMQ host Sensu has to connect to.
|
|
type: string
|
|
default: ''
|
|
MonitoringRabbitPort:
|
|
default: 5672
|
|
description: Set RabbitMQ subscriber port, change this if using SSL.
|
|
type: number
|
|
MonitoringRabbitUseSSL:
|
|
default: false
|
|
description: >
|
|
RabbitMQ client subscriber parameter to specify an SSL connection
|
|
to the RabbitMQ host.
|
|
type: string
|
|
MonitoringRabbitPassword:
|
|
description: The RabbitMQ password used for monitoring purposes.
|
|
type: string
|
|
hidden: true
|
|
MonitoringRabbitUserName:
|
|
description: The RabbitMQ username used for monitoring purposes.
|
|
type: string
|
|
default: sensu
|
|
MonitoringRabbitVhost:
|
|
description: The RabbitMQ vhost used for monitoring purposes.
|
|
type: string
|
|
default: '/sensu'
|
|
|
|
|
|
outputs:
|
|
role_data:
|
|
description: Role data for the Sensu role.
|
|
value:
|
|
service_name: sensu_base
|
|
config_settings:
|
|
sensu::enterprise: false
|
|
sensu::enterprise_dashboard: false
|
|
sensu::install_repo: false
|
|
sensu::manage_user: false
|
|
sensu::rabbitmq_host: {get_param: MonitoringRabbitHost}
|
|
sensu::rabbitmq_password: {get_param: MonitoringRabbitPassword}
|
|
sensu::rabbitmq_port: {get_param: MonitoringRabbitPort}
|
|
sensu::rabbitmq_ssl: {get_param: MonitoringRabbitUseSSL}
|
|
sensu::rabbitmq_user: {get_param: MonitoringRabbitUserName}
|
|
sensu::rabbitmq_vhost: {get_param: MonitoringRabbitVhost}
|
|
#sensu::redis_host: {get_param: MonitoringRedisHost}
|
|
#sensu::redis_password: {get_param: MonitoringRedisPassword}
|
|
sensu::sensu_plugin_provider: 'yum'
|
|
sensu::sensu_plugin_name: 'rubygem-sensu-plugin'
|
|
sensu::version: 'present'
|