diff options
author | Alex Schultz <aschultz@redhat.com> | 2016-12-19 09:23:33 -0700 |
---|---|---|
committer | Alex Schultz <aschultz@redhat.com> | 2016-12-22 13:54:13 -0700 |
commit | 7f58104f5dc9ebf02ba8bfbc5864b59482b87fed (patch) | |
tree | 8c8bb6564184d24171a29bbc916495d2ae4e1b54 | |
parent | 33bdba26d668d91f213515a91f8797b9b249d84a (diff) |
Pass nova rabbit information to mysql
The cell v2 setup requires the transport url for nova. We need to
provide mysql with the rabbit connection information so that it can it
when setting up the cell information.
Change-Id: I43ba77cd4c8da7c6dc117ab0bd53e5cd330dc3de
Related-Bug: #1649341
-rw-r--r-- | puppet/services/nova-base.yaml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/puppet/services/nova-base.yaml b/puppet/services/nova-base.yaml index 20bf2e42..05385607 100644 --- a/puppet/services/nova-base.yaml +++ b/puppet/services/nova-base.yaml @@ -123,3 +123,9 @@ outputs: - compute_upgrade_level_empty - {} - nova::upgrade_level_compute: {get_param: UpgradeLevelNovaCompute} + service_config_settings: + mysql: + nova::rabbit_password: {get_param: RabbitPassword} + nova::rabbit_userid: {get_param: RabbitUserName} + nova::rabbit_use_ssl: {get_param: RabbitClientUseSSL} + nova::rabbit_port: {get_param: RabbitClientPort} |