diff options
author | Michael Chapman <michapma@redhat.com> | 2016-07-21 18:44:33 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-07-21 18:44:33 +0000 |
commit | 74c3a21e33e9eb3d69024c00fece652d86d8fd38 (patch) | |
tree | d3d4f8424a88c452dce2e49e7e2a37ed4e675596 | |
parent | cb9a04dcca7ce267650f77682910b1a98da34a54 (diff) | |
parent | 255f5ea0e592dcc86bc24121bf9e00e29f62f573 (diff) |
Merge "Fixes unable to upload glance images on undercloud"
-rwxr-xr-x | lib/overcloud-deploy-functions.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/overcloud-deploy-functions.sh b/lib/overcloud-deploy-functions.sh index c7177333..0c3f9d44 100755 --- a/lib/overcloud-deploy-functions.sh +++ b/lib/overcloud-deploy-functions.sh @@ -201,6 +201,10 @@ fi source stackrc set -o errexit +# Workaround for APEX-207 where sometimes swift proxy is down +if ! sudo systemctl status openstack-swift-proxy > /dev/null; then + sudo systemctl restart openstack-swift-proxy +fi echo "Uploading overcloud glance images" openstack overcloud image upload |