diff options
author | Dan Radez <dradez@redhat.com> | 2016-02-16 13:48:52 -0500 |
---|---|---|
committer | Dan Radez <dradez@redhat.com> | 2016-02-16 13:48:52 -0500 |
commit | 53122093b40ad3c53a83cc1595b0a2afe6c79378 (patch) | |
tree | 3d30d1e3e310b8ac02ac342516389a9261c4f522 | |
parent | 6eaef72d9b3de5a7c17a6a03529bbd735890b830 (diff) |
external network creation fix
Change-Id: I618a6d6e762a464751d61c070571df400a3c8eda
-rwxr-xr-x | ci/deploy.sh | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh index 31b5d2f5..f7b30a1e 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -951,10 +951,9 @@ function configure_post_install { ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" <<EOI source overcloudrc set -o errexit -service_tenant_id="\$(keystone tenant-get service | grep id | awk '{ print \$4 }')" echo "Configuring Neutron external network" -neutron net-create external --router:external=True --tenant-id \$service_tenant_id -neutron subnet-create --name external-net --tenant-id \$service_tenant_id --disable-dhcp external --gateway ${public_network_gateway} --allocation-pool start=${public_network_floating_ip_range%%,*},end=${public_network_floating_ip_range##*,} ${public_network_cidr} +neutron net-create external --router:external=True --tenant-id \$(keystone tenant-get service | grep id | awk '{ print \$4 }') +neutron subnet-create --name external-net --tenant-id \$(keystone tenant-get service | grep id | awk '{ print \$4 }') --disable-dhcp external --gateway ${public_network_gateway} --allocation-pool start=${public_network_floating_ip_range%%,*},end=${public_network_floating_ip_range##*,} ${public_network_cidr} EOI echo -e "${blue}INFO: Checking if OVS bridges have IP addresses...${reset}" @@ -1035,8 +1034,7 @@ done # Print out the dashboard URL source stackrc -publicvip=\$(heat output-show overcloud PublicVip | sed 's/"//g') -echo "Overcloud dashboard available at http://\$publicvip/dashboard" +echo "Overcloud dashboard available at http://\$(heat output-show overcloud PublicVip | sed 's/"//g')/dashboard" EOI } |