Vasyl Saienko | 884138e | 2017-06-12 15:46:17 +0300 | [diff] [blame] | 1 | applications: |
| 2 | - nova |
| 3 | classes: |
| 4 | - service.nova.support |
| 5 | parameters: |
Dmitry Kalashnik | e58fe08 | 2017-12-01 16:31:14 +0400 | [diff] [blame^] | 6 | _param: |
| 7 | openstack_log_appender: false |
| 8 | openstack_fluentd_handler_enabled: false |
Vasyl Saienko | 884138e | 2017-06-12 15:46:17 +0300 | [diff] [blame] | 9 | nova: |
| 10 | compute: |
| 11 | version: ${_param:nova_version} |
| 12 | enabled: true |
| 13 | compute_driver: 'ironic.IronicDriver' |
| 14 | ram_allocation_ratio: 1.0 |
| 15 | force_config_drive: True |
| 16 | config_drive_format: 'iso9660' |
| 17 | database: |
| 18 | engine: mysql |
| 19 | host: ${_param:cluster_vip_address} |
| 20 | port: 3306 |
| 21 | name: nova |
| 22 | user: nova |
| 23 | password: ${_param:mysql_nova_password} |
| 24 | identity: |
| 25 | engine: keystone |
| 26 | region: RegionOne |
| 27 | host: ${_param:cluster_vip_address} |
| 28 | port: 35357 |
| 29 | user: nova |
| 30 | password: ${_param:keystone_nova_password} |
| 31 | tenant: service |
Dmitry Kalashnik | e58fe08 | 2017-12-01 16:31:14 +0400 | [diff] [blame^] | 32 | logging: |
| 33 | log_appender: ${_param:openstack_log_appender} |
| 34 | log_handlers: |
| 35 | watchedfile: |
| 36 | enabled: true |
| 37 | fluentd: |
| 38 | enabled: ${_param:openstack_fluentd_handler_enabled} |
Vasyl Saienko | 884138e | 2017-06-12 15:46:17 +0300 | [diff] [blame] | 39 | message_queue: |
| 40 | engine: rabbitmq |
| 41 | host: ${_param:cluster_vip_address} |
| 42 | port: 5672 |
| 43 | user: openstack |
| 44 | password: ${_param:rabbitmq_openstack_password} |
| 45 | virtual_host: '/openstack' |
| 46 | image: |
| 47 | engine: glance |
| 48 | host: ${_param:cluster_vip_address} |
| 49 | port: 9292 |
| 50 | network: |
| 51 | engine: neutron |
| 52 | region: RegionOne |
| 53 | host: ${_param:cluster_vip_address} |
| 54 | port: 9696 |
| 55 | ironic: |
| 56 | region: RegionOne |
| 57 | host: ${_param:ironic_service_host} |
| 58 | port: 6385 |
| 59 | user: ironic |
| 60 | tenant: service |
| 61 | password: ${_param:keystone_ironic_password} |
| 62 | auth_type: password |