Description of problem:
If I deploy a could using the --stack <altname> option, upgrade-non-controller script does not function to upgrade the cloud and exits with the error message
"ERROR: The Stack (overcloud) could not be found."
Version-Release number of selected component (if applicable):
openstack-tripleo-common-7.6.3-10.el7ost.noarch
How reproducible:
100%
Steps to Reproduce:
1. Deploy an OSP11 cloud using the --stack option to give it an alternate name
2. attempt upgrade
3.
Actual results:
fails
Expected results:
stacks not named "overcloud" function
Additional info:
This hack worked for me:
[stack@dcostako-undercloud ~]$ diff /tmp/upgrade-non-controller-fixed.sh /usr/bin/upgrade-non-controller.sh
175,178d174
< PLAN=$(openstack stack list -c 'Stack Name' -f value)
< echo Dave: $PLAN
< export TRIPLEO_PLAN_NAME=${PLAN}
<
186c182
< openstack overcloud config download --config-dir "$UPGRADE_NODE" --name $PLAN
---
> openstack overcloud config download --config-dir "$UPGRADE_NODE"
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.
For information on the advisory, and where to find the updated
files, follow the link below.
If the solution does not work for you, open a new bug report.
https://access.redhat.com/errata/RHBA-2018:0607
Description of problem: If I deploy a could using the --stack <altname> option, upgrade-non-controller script does not function to upgrade the cloud and exits with the error message "ERROR: The Stack (overcloud) could not be found." Version-Release number of selected component (if applicable): openstack-tripleo-common-7.6.3-10.el7ost.noarch How reproducible: 100% Steps to Reproduce: 1. Deploy an OSP11 cloud using the --stack option to give it an alternate name 2. attempt upgrade 3. Actual results: fails Expected results: stacks not named "overcloud" function Additional info: This hack worked for me: [stack@dcostako-undercloud ~]$ diff /tmp/upgrade-non-controller-fixed.sh /usr/bin/upgrade-non-controller.sh 175,178d174 < PLAN=$(openstack stack list -c 'Stack Name' -f value) < echo Dave: $PLAN < export TRIPLEO_PLAN_NAME=${PLAN} < 186c182 < openstack overcloud config download --config-dir "$UPGRADE_NODE" --name $PLAN --- > openstack overcloud config download --config-dir "$UPGRADE_NODE"