Merge "Filter null/None service names"
[apex-tripleo-heat-templates.git] / puppet / services / database / redis-base.yaml
1 heat_template_version: 2016-04-08
2
3 description: >
4   OpenStack Redis service configured with Puppet
5
6 parameters:
7   RedisPassword:
8     description: The password for Redis
9     type: string
10     hidden: true
11
12 outputs:
13   role_data:
14     description: Role data for the redis role.
15     value:
16       service_name: redis_base
17       config_settings:
18         redis::requirepass: {get_param: RedisPassword}
19         redis::masterauth: {get_param: RedisPassword}
20         redis::sentinel_auth_pass: {get_param: RedisPassword}
21         redis::port: 6379
22         redis::sentinel::master_name: '"%{hiera(\"bootstrap_nodeid\")}"'
23         redis::sentinel::redis_host: '"%{hiera(\"bootstrap_nodeid_ip\")}"'
24         redis::sentinel::notification_script: '/usr/local/bin/redis-notifications.sh'
25         tripleo::loadbalancer::redis_password: {get_param: RedisPassword}