X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=foreman%2Fci%2Fdeploy.sh;h=18a0301f80b770f5b0a71ebad5718cf5c7f147de;hb=db4a9ac5492659cd435b4e4e84868510259c6b29;hp=6771da0c1243da598ee3ee1a9a5b07415d4cd61a;hpb=153ad3e4d97f19ab5e465df6a46e26b7c7935058;p=genesis.git diff --git a/foreman/ci/deploy.sh b/foreman/ci/deploy.sh index 6771da0..18a0301 100755 --- a/foreman/ci/deploy.sh +++ b/foreman/ci/deploy.sh @@ -1133,7 +1133,21 @@ start_virtual_nodes() { if [ ! -z "$horizon_public_vip" ]; then echo "${blue} Virtual deployment SUCCESS!! Foreman URL: http://${foreman_ip}, Horizon URL: http://${horizon_public_vip} ${reset}" else - echo "${blue} Virtual deployment SUCCESS!! Foreman URL: http://${foreman_ip}, Horizon URL: http://${odl_control_ip} ${reset}" + ##Find public IP of controller + for node in ${nodes}; do + node_type=config_nodes_${node}_type + node_type=$(eval echo \$$node_type) + if [ "$node_type" == "controller" ]; then + pushd $vm_dir/$node + horizon_ip=`vagrant ssh -c "ifconfig enp0s10" | grep -Eo "inet [0-9\.]+" | awk {'print $2'}` + popd + break + fi + done + if [ -z "$horizon_ip" ]; then + echo "${red}Warn: Unable to determine horizon IP, please login to your controller node to find it${reset}" + fi + echo "${blue} Virtual deployment SUCCESS!! Foreman URL: http://${foreman_ip}, Horizon URL: http://${horizon_ip} ${reset}" fi fi }