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