diff options
author | Dan Radez <dradez@redhat.com> | 2017-05-18 15:05:09 -0400 |
---|---|---|
committer | Dan Radez <dradez@redhat.com> | 2017-05-18 15:08:24 -0400 |
commit | 733a3a9502ed26c9fc927d935c94d85230ab8e55 (patch) | |
tree | 3ac9b4eaa3d28c5d4ad89839084f9f05486e7672 | |
parent | dd23df3e1ecdf96fa3313114a91a7130566c3a3a (diff) |
Missed an update to swap neutron out for openstack cli
APEX-432
Change-Id: I787ce844d0d585f55d2267a57642e35f2a47bd40
Signed-off-by: Dan Radez <dradez@redhat.com>
-rwxr-xr-x | lib/overcloud-deploy-functions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/overcloud-deploy-functions.sh b/lib/overcloud-deploy-functions.sh index e125eb62..adaf98a9 100755 --- a/lib/overcloud-deploy-functions.sh +++ b/lib/overcloud-deploy-functions.sh @@ -378,7 +378,7 @@ dns_server_ext='' for dns_server in ${dns_servers}; do dns_server_ext="\${dns_server_ext} --dns-nameserver \${dns_server}" done -neutron subnet-update \$(neutron subnet-list | grep -Ev "id|tenant|external|storage" | grep -v \\\\-\\\\- | awk {'print \$2'}) \${dns_server_ext} +openstack subnet set ctlplane-subnet \${dns_server_ext} sed -i '/CloudDomain:/c\ CloudDomain: '${domain_name} ${ENV_FILE} echo "Executing overcloud deployment, this could run for an extended period without output." sleep 60 #wait for Hypervisor stats to check-in to nova |