diff options
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/overcloud-deploy-functions.sh | 4 | ||||
-rwxr-xr-x | lib/post-install-functions.sh | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/lib/overcloud-deploy-functions.sh b/lib/overcloud-deploy-functions.sh index 0c3f9d44..14c37247 100755 --- a/lib/overcloud-deploy-functions.sh +++ b/lib/overcloud-deploy-functions.sh @@ -199,6 +199,10 @@ if [ "$debug" == 'TRUE' ]; then LIBGUESTFS_BACKEND=direct virt-customize -a overcloud-full.qcow2 --root-password password:opnfvapex fi +if [ "${deploy_options_array['tacker']}" == 'True' ]; then + sed -i '/EnableTacker/\\c EnableTacker: true' opnfv-environment.yaml +fi + source stackrc set -o errexit # Workaround for APEX-207 where sometimes swift proxy is down diff --git a/lib/post-install-functions.sh b/lib/post-install-functions.sh index 8ccd896f..af72d8f9 100755 --- a/lib/post-install-functions.sh +++ b/lib/post-install-functions.sh @@ -158,6 +158,11 @@ if [ "$debug" == "TRUE" ]; then echo "---------------------------" echo "----------END LOG----------" echo "---------------------------" + + ssh -T ${SSH_OPTIONS[@]} "heat-admin@\$node" <<EOF +echo "$node" +sudo openstack-status +EOF fi ssh -T ${SSH_OPTIONS[@]} "heat-admin@\$node" <<EOF sudo rm -f /home/heat-admin/messages.log |