Merge "Enable Neutron LBaaS Integration"
[apex-tripleo-heat-templates.git] / puppet / services / database / redis-base.yaml
1 heat_template_version: pike
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   RedisFDLimit:
12     description: Configure Redis FD limit
13     type: string
14     default: 10240
15   ServiceData:
16     default: {}
17     description: Dictionary packing service data
18     type: json
19   ServiceNetMap:
20     default: {}
21     description: Mapping of service_name -> network name. Typically set
22                  via parameter_defaults in the resource registry.  This
23                  mapping overrides those in ServiceNetMapDefaults.
24     type: json
25   DefaultPasswords:
26     default: {}
27     type: json
28   RoleName:
29     default: ''
30     description: Role name on which the service is applied
31     type: string
32   RoleParameters:
33     default: {}
34     description: Parameters specific to the role
35     type: json
36   EndpointMap:
37     default: {}
38     description: Mapping of service endpoint -> protocol. Typically set
39                  via parameter_defaults in the resource registry.
40     type: json
41
42 outputs:
43   role_data:
44     description: Role data for the redis role.
45     value:
46       service_name: redis_base
47       config_settings:
48         redis::requirepass: {get_param: RedisPassword}
49         redis::masterauth: {get_param: RedisPassword}
50         redis::sentinel_auth_pass: {get_param: RedisPassword}
51         # NOTE: bind IP is found in Heat replacing the network name with the local node IP
52         # for the given network; replacement examples (eg. for internal_api):
53         # internal_api -> IP
54         # internal_api_uri -> [IP]
55         # internal_api_subnet - > IP/CIDR
56         redis::bind: {get_param: [ServiceNetMap, RedisNetwork]}
57         redis::port: 6379
58         redis::sentinel::master_name: "%{hiera('bootstrap_nodeid')}"
59         redis::sentinel::redis_host: "%{hiera('bootstrap_nodeid_ip')}"
60         redis::sentinel::notification_script: '/usr/local/bin/redis-notifications.sh'
61         redis::sentinel::sentinel_bind: {get_param: [ServiceNetMap, RedisNetwork]}
62         redis::ulimit: {get_param: RedisFDLimit}