d69868ea9e
Integration of OpenStack data processing service (sahara) with TripleO. - Deploys sahara in distributed mode (separate api and engine processes on each controller node) - Load balancing w/haproxy - RabbitMQ/MySQL supported per current TripleO standard - Minimal configurability at this time Change-Id: I77a6a69ed5691e3b1ba34e9ebb4d88c80019642c Partially-implements: blueprint sahara-integration Depends-On: I0f0a1dc2eaa57d8226bad8cfb250110296ab9614 Depends-On: Ib84cc59667616ec94e7edce2715cbd7dd944f4ae Depends-On: I9fe321fd4284f7bfd55bd2e69dcfe623ed6f8a2a
63 lines
1.6 KiB
YAML
63 lines
1.6 KiB
YAML
# Nova
|
|
nova::db::mysql::user: nova
|
|
nova::db::mysql::host: "%{hiera('mysql_virtual_ip')}"
|
|
nova::db::mysql::dbname: nova
|
|
nova::db::mysql::allowed_hosts:
|
|
- '%'
|
|
- "%{hiera('mysql_bind_host')}"
|
|
|
|
# Glance
|
|
glance::db::mysql::user: glance
|
|
glance::db::mysql::host: "%{hiera('mysql_virtual_ip')}"
|
|
glance::db::mysql::dbname: glance
|
|
glance::db::mysql::allowed_hosts:
|
|
- '%'
|
|
- "%{hiera('mysql_bind_host')}"
|
|
|
|
# Keystone
|
|
keystone::db::mysql::user: keystone
|
|
keystone::db::mysql::host: "%{hiera('mysql_virtual_ip')}"
|
|
keystone::db::mysql::dbname: keystone
|
|
keystone::db::mysql::allowed_hosts:
|
|
- '%'
|
|
- "%{hiera('mysql_bind_host')}"
|
|
|
|
# Neutron
|
|
neutron::db::mysql::user: neutron
|
|
neutron::db::mysql::host: "%{hiera('mysql_virtual_ip')}"
|
|
neutron::db::mysql::dbname: ovs_neutron
|
|
neutron::db::mysql::allowed_hosts:
|
|
- '%'
|
|
- "%{hiera('mysql_bind_host')}"
|
|
|
|
# Cinder
|
|
cinder::db::mysql::user: cinder
|
|
cinder::db::mysql::host: "%{hiera('mysql_virtual_ip')}"
|
|
cinder::db::mysql::dbname: cinder
|
|
cinder::db::mysql::allowed_hosts:
|
|
- '%'
|
|
- "%{hiera('mysql_bind_host')}"
|
|
|
|
# Heat
|
|
heat::db::mysql::user: heat
|
|
heat::db::mysql::host: "%{hiera('mysql_virtual_ip')}"
|
|
heat::db::mysql::dbname: heat
|
|
heat::db::mysql::allowed_hosts:
|
|
- '%'
|
|
- "%{hiera('mysql_bind_host')}"
|
|
|
|
# Ceilometer
|
|
ceilometer::db::mysql::user: ceilometer
|
|
ceilometer::db::mysql::host: "%{hiera('mysql_virtual_ip')}"
|
|
ceilometer::db::mysql::dbname: ceilometer
|
|
ceilometer::db::mysql::allowed_hosts:
|
|
- '%'
|
|
- "%{hiera('mysql_bind_host')}"
|
|
|
|
sahara::db::mysql::user: sahara
|
|
sahara::db::mysql::host: "%{hiera('mysql_virtual_ip')}"
|
|
sahara::db::mysql::dbname: sahara
|
|
sahara::db::mysql::allowed_hosts:
|
|
- '%'
|
|
- "%{hiera('mysql_bind_host')}"
|