Merge "Release notes ha composable"
[apex-tripleo-heat-templates.git] / puppet / services / congress.yaml
1 heat_template_version: ocata
2
3 description: >
4   OpenStack Congress service configured with Puppet
5
6 parameters:
7   ServiceNetMap:
8     default: {}
9     description: Mapping of service_name -> network name. Typically set
10                  via parameter_defaults in the resource registry.  This
11                  mapping overrides those in ServiceNetMapDefaults.
12     type: json
13   DefaultPasswords:
14     default: {}
15     type: json
16   EndpointMap:
17     default: {}
18     description: Mapping of service endpoint -> protocol. Typically set
19                  via parameter_defaults in the resource registry.
20     type: json
21   CongressPassword:
22     description: The password for the congress service account.
23     type: string
24     hidden: true
25   Debug:
26     type: string
27     default: ''
28   KeystoneRegion:
29     type: string
30     default: 'regionOne'
31     description: Keystone region for endpoint
32   RabbitPassword:
33     description: The password for RabbitMQ
34     type: string
35     hidden: true
36   RabbitUserName:
37     default: guest
38     description: The username for RabbitMQ
39     type: string
40   RabbitClientUseSSL:
41     default: false
42     description: >
43         Rabbit client subscriber parameter to specify
44         an SSL connection to the RabbitMQ host.
45     type: string
46   RabbitClientPort:
47     default: 5672
48     description: Set rabbit subscriber port, change this if using SSL
49     type: number
50
51 outputs:
52   role_data:
53     description: Role data for the Congress role.
54     value:
55       service_name: congress
56       config_settings:
57         congress_password: {get_param: CongressPassword}
58         congress::db::database_connection:
59           list_join:
60             - ''
61             - - {get_param: [EndpointMap, MysqlInternal, protocol]}
62               - '://congress:'
63               - {get_param: CongressPassword}
64               - '@'
65               - {get_param: [EndpointMap, MysqlInternal, host]}
66               - '/congress'
67               - '?bind_address='
68               - "%{hiera('tripleo::profile::base::database::mysql::client_bind_address')}"
69         congress::keystone::auth::tenant: 'service'
70         congress::keystone::auth::password: {get_param: CongressPassword}
71         congress::keystone::authtoken::auth_uri: {get_param: [EndpointMap, KeystoneInternal, uri]}
72         congress::debug: {get_param: Debug}
73         congress::rpc_backend: rabbit
74         congress::rabbit_userid: {get_param: RabbitUserName}
75         congress::rabbit_password: {get_param: RabbitPassword}
76         congress::rabbit_use_ssl: {get_param: RabbitClientUseSSL}
77         congress::rabbit_port: {get_param: RabbitClientPort}
78         congress::server::bind_host: {get_param: [ServiceNetMap, CongressApiNetwork]}
79
80         congress::db::mysql::password: {get_param: CongressPassword}
81         congress::db::mysql::user: congress
82         congress::db::mysql::host: {get_param: [EndpointMap, MysqlInternal, host_nobrackets]}
83         congress::db::mysql::dbname: congress
84         congress::db::mysql::allowed_hosts:
85           - '%'
86           - {get_param: [EndpointMap, MysqlInternal, host_nobrackets]}
87
88
89       step_config: |
90         include ::tripleo::profile::base::congress