Petr Jediný | dd6387a | 2017-08-01 15:50:17 +0200 | [diff] [blame] | 1 | applications: |
| 2 | - barbican |
| 3 | classes: |
| 4 | - service.barbican.support |
| 5 | parameters: |
Petr Jediný | 1ff6f56 | 2017-08-09 14:38:09 +0200 | [diff] [blame] | 6 | _param: |
| 7 | keystone_barbican_endpoint_type: internalURL |
Vasyl Saienko | 805ed04 | 2018-03-23 09:34:41 +0200 | [diff] [blame] | 8 | cluster_internal_protocol: 'http' |
| 9 | barbican_service_protocol: ${_param:cluster_internal_protocol} |
Petr Jediný | dd6387a | 2017-08-01 15:50:17 +0200 | [diff] [blame] | 10 | barbican: |
| 11 | server: |
| 12 | enabled: true |
Petr Jediný | 1ff6f56 | 2017-08-09 14:38:09 +0200 | [diff] [blame] | 13 | version: ${_param:barbican_version} |
| 14 | region: ${_param:openstack_region} |
Vasyl Saienko | 805ed04 | 2018-03-23 09:34:41 +0200 | [diff] [blame] | 15 | host_href: "${_param:barbican_service_protocol}://${_param:cluster_vip_address}:9311" |
Petr Jediný | 1ff6f56 | 2017-08-09 14:38:09 +0200 | [diff] [blame] | 16 | is_proxied: true |
Petr Jediný | dd6387a | 2017-08-01 15:50:17 +0200 | [diff] [blame] | 17 | bind: |
Petr Jediný | 1ff6f56 | 2017-08-09 14:38:09 +0200 | [diff] [blame] | 18 | address: ${_param:cluster_local_address} |
| 19 | port: 9311 |
| 20 | admin_port: 9312 |
| 21 | database: |
| 22 | engine: "mysql+pymysql" |
| 23 | host: ${_param:cluster_vip_address} |
| 24 | port: 3306 |
| 25 | name: barbican |
| 26 | user: barbican |
| 27 | password: ${_param:mysql_barbican_password} |
Petr Jediný | 09886ec | 2017-09-06 22:20:38 +0200 | [diff] [blame] | 28 | sql_idle_timeout: 180 |
Petr Jediný | 1ff6f56 | 2017-08-09 14:38:09 +0200 | [diff] [blame] | 29 | identity: |
| 30 | engine: keystone |
| 31 | host: ${_param:cluster_vip_address} |
| 32 | port: 35357 |
| 33 | domain: default |
| 34 | tenant: service |
| 35 | user: barbican |
| 36 | password: ${_param:keystone_barbican_password} |
| 37 | endpoint_type: ${_param:keystone_barbican_endpoint_type} |
| 38 | message_queue: |
| 39 | engine: rabbitmq |
| 40 | user: openstack |
| 41 | password: ${_param:rabbitmq_openstack_password} |
| 42 | virtual_host: '/openstack' |
| 43 | members: |
| 44 | - host: ${_param:openstack_message_queue_node01_address} |
| 45 | port: 5672 |
| 46 | - host: ${_param:openstack_message_queue_node02_address} |
| 47 | port: 5672 |
| 48 | - host: ${_param:openstack_message_queue_node03_address} |
| 49 | port: 5672 |
| 50 | cache: |
| 51 | members: |
| 52 | - host: ${_param:openstack_control_node01_address} |
| 53 | port: 11211 |
| 54 | - host: ${_param:openstack_control_node02_address} |
| 55 | port: 11211 |
| 56 | - host: ${_param:openstack_control_node03_address} |
| 57 | port: 11211 |
| 58 | |