diff options
author | Jenkins <jenkins@review.openstack.org> | 2016-02-12 13:19:44 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2016-02-12 13:19:44 +0000 |
commit | 8d763fc70c33695a4752b04656d3904561cc19f3 (patch) | |
tree | 9e350064ae64ddaeb898a678a9f084d83ca30bf5 /puppet/hieradata/database.yaml | |
parent | 20fc1118fda24946ada541ebc435896253c2a911 (diff) | |
parent | 65353adb6f4dce73c9c7384bd9cbbea6b09f3e6c (diff) |
Merge "Nova now requires an api database to be created"
Diffstat (limited to 'puppet/hieradata/database.yaml')
-rw-r--r-- | puppet/hieradata/database.yaml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/puppet/hieradata/database.yaml b/puppet/hieradata/database.yaml index 89577505..61714691 100644 --- a/puppet/hieradata/database.yaml +++ b/puppet/hieradata/database.yaml @@ -6,6 +6,13 @@ nova::db::mysql::allowed_hosts: - '%' - "%{hiera('mysql_bind_host')}" +nova::db::mysql_api::user: nova_api +nova::db::mysql_api::host: "%{hiera('mysql_virtual_ip')}" +nova::db::mysql_api::dbname: nova_api +nova::db::mysql_api::allowed_hosts: + - '%' + - "%{hiera('mysql_bind_host')}" + # Glance glance::db::mysql::user: glance glance::db::mysql::host: "%{hiera('mysql_virtual_ip')}" |