Merge "Make Rabbit parameters consistent"
[apex-tripleo-heat-templates.git] / puppet / services / congress.yaml
1 heat_template_version: pike
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   RoleName:
17     default: ''
18     description: Role name on which the service is applied
19     type: string
20   RoleParameters:
21     default: {}
22     description: Parameters specific to the role
23     type: json
24   EndpointMap:
25     default: {}
26     description: Mapping of service endpoint -> protocol. Typically set
27                  via parameter_defaults in the resource registry.
28     type: json
29   CongressPassword:
30     description: The password for the congress service account.
31     type: string
32     hidden: true
33   Debug:
34     type: string
35     default: ''
36   CongressDebug:
37     default: ''
38     description: Set to True to enable debugging Glance service.
39     type: string
40   KeystoneRegion:
41     type: string
42     default: 'regionOne'
43     description: Keystone region for endpoint
44   RabbitPassword:
45     description: The password for RabbitMQ
46     type: string
47     hidden: true
48   RabbitUserName:
49     default: guest
50     description: The username for RabbitMQ
51     type: string
52   RabbitClientUseSSL:
53     default: false
54     description: >
55         Rabbit client subscriber parameter to specify
56         an SSL connection to the RabbitMQ host.
57     type: string
58   RabbitClientPort:
59     default: 5672
60     description: Set rabbit subscriber port, change this if using SSL
61     type: number
62   CongressPolicies:
63     description: |
64       A hash of policies to configure for Congress.
65       e.g. { congress-context_is_admin: { key: context_is_admin, value: 'role:admin' } }
66     default: {}
67     type: json
68   NotificationDriver:
69     type: string
70     default: 'messagingv2'
71     description: Driver or drivers to handle sending notifications.
72     constraints:
73       - allowed_values: [ 'messagingv2', 'noop' ]
74
75 conditions:
76   service_debug_unset: {equals : [{get_param: CongressDebug}, '']}
77
78 outputs:
79   role_data:
80     description: Role data for the Congress role.
81     value:
82       service_name: congress
83       config_settings:
84         congress_password: {get_param: CongressPassword}
85         congress::db::database_connection:
86           make_url:
87             scheme: {get_param: [EndpointMap, MysqlInternal, protocol]}
88             username: congress
89             password: {get_param: CongressPassword}
90             host: {get_param: [EndpointMap, MysqlInternal, host]}
91             path: /congress
92             query:
93               read_default_file: /etc/my.cnf.d/tripleo.cnf
94               read_default_group: tripleo
95         congress::debug:
96           if:
97           - service_debug_unset
98           - {get_param: Debug }
99           - {get_param: CongressDebug }
100         congress::rpc_backend: rabbit
101         congress::notification_driver: {get_param: NotificationDriver}
102         congress::rabbit_userid: {get_param: RabbitUserName}
103         congress::rabbit_password: {get_param: RabbitPassword}
104         congress::rabbit_use_ssl: {get_param: RabbitClientUseSSL}
105         congress::rabbit_port: {get_param: RabbitClientPort}
106         congress::server::bind_host: {get_param: [ServiceNetMap, CongressApiNetwork]}
107
108         congress::keystone::authtoken::password: {get_param: CongressPassword}
109         congress::keystone::authtoken::project_name: 'service'
110         congress::keystone::authtoken::user_domain_name: 'Default'
111         congress::keystone::authtoken::project_domain_name: 'Default'
112         congress::keystone::authtoken::auth_url: {get_param: [EndpointMap, KeystoneInternal, uri_no_suffix]}
113         congress::keystone::authtoken::auth_uri: {get_param: [EndpointMap, KeystoneInternal, uri_no_suffix]}
114
115         congress::db::mysql::password: {get_param: CongressPassword}
116         congress::db::mysql::user: congress
117         congress::db::mysql::host: {get_param: [EndpointMap, MysqlInternal, host_nobrackets]}
118         congress::db::mysql::dbname: congress
119         congress::db::mysql::allowed_hosts:
120           - '%'
121           - {get_param: [EndpointMap, MysqlInternal, host_nobrackets]}
122         congress::policy::policies: {get_param: CongressPolicies}
123
124       service_config_settings:
125         keystone:
126           congress::keystone::auth::tenant: 'service'
127           congress::keystone::auth::region: {get_param: KeystoneRegion}
128           congress::keystone::auth::password: {get_param: CongressPassword}
129           congress::keystone::auth::public_url: {get_param: [EndpointMap, CongressPublic, uri]}
130           congress::keystone::auth::internal_url: {get_param: [EndpointMap, CongressInternal, uri]}
131           congress::keystone::auth::admin_url: {get_param: [EndpointMap, CongressAdmin, uri]}
132
133       step_config: |
134         include ::tripleo::profile::base::congress
135
136       upgrade_tasks:
137         - name: Check if congress is deployed
138           command: systemctl is-enabled openstack-congress-server
139           tags: common
140           ignore_errors: True
141           register: congress_enabled
142         - name: "PreUpgrade step0,validation: Check service openstack-congress-server is running"
143           shell: /usr/bin/systemctl show 'openstack-congress-server' --property ActiveState | grep '\bactive\b'
144           when: congress_enabled.rc == 0
145           tags: step0,validation
146         - name: Stop congress service
147           tags: step1
148           when: congress_enabled.rc == 0
149           service: name=openstack-congress-server state=stopped
150         - name: Install openstack-congress package if it was disabled
151           tags: step3
152           yum: name=openstack-congress state=latest
153           when: congress_enabled.rc != 0