diff options
author | Dan Radez <dradez@redhat.com> | 2016-07-13 14:45:28 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-07-13 14:45:28 +0000 |
commit | 326df028a9a49c2da1dfe36e1d2ae3f4a7f51838 (patch) | |
tree | 291440c057ce8683b726e3fa7c2360b3f7e729e1 /lib | |
parent | c23a9c13e2fd665636b8dec6cf372e8139ec32fd (diff) | |
parent | 7214274c5938033b51d828e8d0ac1af280cab826 (diff) |
Merge "Adds SDN Controller IP to overcloudrc file"
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/post-install-functions.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/post-install-functions.sh b/lib/post-install-functions.sh index e1f121b9..912a2a11 100755 --- a/lib/post-install-functions.sh +++ b/lib/post-install-functions.sh @@ -64,6 +64,14 @@ EOI done fi + # TODO fix this when HA SDN controllers are supported + if [ "${deploy_options_array['sdn_controller']}" != 'False' ]; then + echo -e "${blue}INFO: Finding SDN Controller IP for overcloudrc...${reset}" + sdn_controller_ip=$(overcloud_connect controller0 "facter ipaddress_br_ex") + echo -e "${blue}INFO: SDN Controller IP is ${sdn_controller_ip} ${reset}" + undercloud_connect stack "echo 'export SDN_CONTROLLER_IP=${sdn_controller_ip}' >> /home/stack/overcloudrc" + fi + ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" <<EOI source overcloudrc set -o errexit |