Filip Pytloun | f8a1d5b | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 1 | applications: |
| 2 | - horizon |
Jakub Pavlik | d53ed67 | 2016-01-28 12:02:32 +0100 | [diff] [blame] | 3 | classes: |
| 4 | - service.horizon.support |
Filip Pytloun | f8a1d5b | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 5 | parameters: |
| 6 | _param: |
| 7 | horizon_version: kilo |
| 8 | horizon_api_version: 3 |
Dennis Dmitriev | 698f9ae | 2017-03-06 14:06:04 +0200 | [diff] [blame] | 9 | horizon_identity_endpoint_type: internalURL |
Filip Pytloun | f8a1d5b | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 10 | horizon: |
| 11 | server: |
| 12 | enabled: true |
| 13 | version: ${_param:horizon_version} |
| 14 | secret_key: ${_param:horizon_secret_key} |
Jakub Pavlik | a1dd7ad | 2016-01-31 15:49:53 +0100 | [diff] [blame] | 15 | session_timeout: 43200 |
Filip Pytloun | f8a1d5b | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 16 | wsgi: |
| 17 | processes: 3 |
| 18 | threads: 10 |
| 19 | bind: |
| 20 | address: ${_param:cluster_local_address} |
| 21 | port: 80 |
| 22 | cache: |
| 23 | engine: memcached |
| 24 | prefix: 'CACHE_HORIZON' |
| 25 | members: |
| 26 | - host: ${_param:cluster_node01_address} |
| 27 | port: 11211 |
| 28 | - host: ${_param:cluster_node02_address} |
| 29 | port: 11211 |
| 30 | - host: ${_param:cluster_node03_address} |
| 31 | port: 11211 |
| 32 | identity: |
| 33 | engine: keystone |
| 34 | host: ${_param:cluster_vip_address} |
| 35 | port: 5000 |
| 36 | api_version: 2 |
Dennis Dmitriev | 698f9ae | 2017-03-06 14:06:04 +0200 | [diff] [blame] | 37 | endpoint_type: ${_param:horizon_identity_endpoint_type} |
Filip Pytloun | f8a1d5b | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 38 | haproxy: |
| 39 | proxy: |
| 40 | listens: |
| 41 | - name: horizon |
| 42 | type: horizon |
| 43 | binds: |
| 44 | - address: ${_param:cluster_vip_address} |
| 45 | port: 80 |
| 46 | servers: |
| 47 | - name: ctl01 |
| 48 | host: ${_param:cluster_node01_address} |
| 49 | port: 80 |
| 50 | params: cookie ctl01 check inter 2000 fall 3 |
| 51 | - name: ctl02 |
| 52 | host: ${_param:cluster_node02_address} |
| 53 | port: 80 |
| 54 | params: cookie ctl02 check inter 2000 fall 3 |
| 55 | - name: ctl03 |
| 56 | host: ${_param:cluster_node03_address} |
| 57 | port: 80 |
| 58 | params: cookie ctl03 check inter 2000 fall 3 |