Ondrej Smola | beb0ad3 | 2016-11-25 16:23:36 +0100 | [diff] [blame] | 1 | applications: |
| 2 | - nova |
| 3 | classes: |
| 4 | - service.nova.support |
Taras Khlivnyak | b85e02d | 2021-08-19 09:48:56 +0300 | [diff] [blame^] | 5 | - service.nova.file_permissions |
Ondrej Smola | beb0ad3 | 2016-11-25 16:23:36 +0100 | [diff] [blame] | 6 | parameters: |
| 7 | _param: |
Dmitry Kalashnik | e58fe08 | 2017-12-01 16:31:14 +0400 | [diff] [blame] | 8 | openstack_log_appender: false |
| 9 | openstack_fluentd_handler_enabled: false |
Oleksii Chupryn | 99e3503 | 2018-02-06 01:59:40 +0200 | [diff] [blame] | 10 | openstack_ossyslog_handler_enabled: false |
Oleh Hryhorov | 7167338 | 2018-09-27 12:57:26 +0300 | [diff] [blame] | 11 | nova_rpc_response_timeout: 30 |
Ondrej Smola | beb0ad3 | 2016-11-25 16:23:36 +0100 | [diff] [blame] | 12 | nova: |
| 13 | compute: |
| 14 | version: ${_param:nova_version} |
| 15 | enabled: true |
Ondrej Smola | beb0ad3 | 2016-11-25 16:23:36 +0100 | [diff] [blame] | 16 | heal_instance_info_cache_interval: 60 |
| 17 | vncproxy_url: http://${_param:cluster_vip_address}:6080 |
Ivan Berezovskiy | f1869a3 | 2019-11-14 20:17:58 +0400 | [diff] [blame] | 18 | concurrency: |
| 19 | lock_path: '/var/lib/nova/tmp' |
Ondrej Smola | beb0ad3 | 2016-11-25 16:23:36 +0100 | [diff] [blame] | 20 | bind: |
| 21 | vnc_address: ${_param:cluster_local_address} |
| 22 | vnc_port: 6080 |
| 23 | vnc_name: 0.0.0.0 |
| 24 | database: |
| 25 | engine: mysql |
| 26 | host: ${_param:openstack_database_address} |
| 27 | port: 3306 |
| 28 | name: nova |
| 29 | user: nova |
| 30 | password: ${_param:mysql_nova_password} |
| 31 | identity: |
| 32 | engine: keystone |
| 33 | region: RegionOne |
| 34 | host: ${_param:cluster_vip_address} |
| 35 | port: 35357 |
| 36 | user: nova |
| 37 | password: ${_param:keystone_nova_password} |
| 38 | tenant: service |
Dmitry Kalashnik | e58fe08 | 2017-12-01 16:31:14 +0400 | [diff] [blame] | 39 | logging: |
| 40 | log_appender: ${_param:openstack_log_appender} |
| 41 | log_handlers: |
| 42 | watchedfile: |
| 43 | enabled: true |
| 44 | fluentd: |
| 45 | enabled: ${_param:openstack_fluentd_handler_enabled} |
Oleksii Chupryn | 99e3503 | 2018-02-06 01:59:40 +0200 | [diff] [blame] | 46 | ossyslog: |
| 47 | enabled: ${_param:openstack_ossyslog_handler_enabled} |
Ondrej Smola | beb0ad3 | 2016-11-25 16:23:36 +0100 | [diff] [blame] | 48 | message_queue: |
| 49 | engine: rabbitmq |
| 50 | port: 5672 |
Oleh Hryhorov | 7167338 | 2018-09-27 12:57:26 +0300 | [diff] [blame] | 51 | rpc_response_timeout: ${_param:nova_rpc_response_timeout} |
Ondrej Smola | beb0ad3 | 2016-11-25 16:23:36 +0100 | [diff] [blame] | 52 | user: openstack |
| 53 | password: ${_param:rabbitmq_openstack_password} |
| 54 | virtual_host: '/openstack' |
| 55 | members: |
| 56 | - host: ${_param:openstack_message_queue_node01_address} |
| 57 | - host: ${_param:openstack_message_queue_node02_address} |
| 58 | - host: ${_param:openstack_message_queue_node03_address} |
| 59 | image: |
| 60 | engine: glance |
| 61 | host: ${_param:cluster_vip_address} |
| 62 | port: 9292 |
| 63 | network: |
| 64 | engine: neutron |
| 65 | region: RegionOne |
| 66 | host: ${_param:opencontrail_control_address} |
| 67 | port: 9696 |
Pavlo Shchelokovskyy | c67b565 | 2019-07-08 11:14:19 +0300 | [diff] [blame] | 68 | retry: 3 |
Ondrej Smola | beb0ad3 | 2016-11-25 16:23:36 +0100 | [diff] [blame] | 69 | cache: |
| 70 | engine: memcached |
Dmitry Ukov | 25b5307 | 2019-02-05 16:56:50 +0400 | [diff] [blame] | 71 | # NOTE (dukov) Do not change this unless you 100% sure what you are doing |
| 72 | expiration_time: 600 |
| 73 | backend_argument: |
| 74 | # NOTE (dukov) WARNING! This parameter depends on expiration_time. |
| 75 | # Value of 'memcached_expire_time' must be bigger than 'expiration_time' |
| 76 | memcached_expire_time: |
| 77 | value: 660 |
Ondrej Smola | beb0ad3 | 2016-11-25 16:23:36 +0100 | [diff] [blame] | 78 | members: |
| 79 | - host: ${_param:cluster_node01_address} |
| 80 | port: 11211 |
| 81 | - host: ${_param:cluster_node02_address} |
| 82 | port: 11211 |
| 83 | - host: ${_param:cluster_node03_address} |
| 84 | port: 11211 |