Merge "Added detailed FiXME for ks-service script bug and code changes in [0]"

This commit is contained in:
Zuul 2021-01-29 23:12:56 +00:00 committed by Gerrit Code Review
commit 1884f2c957
2 changed files with 16 additions and 4 deletions

View File

@ -15,7 +15,7 @@ apiVersion: v1
appVersion: v1.0.0 appVersion: v1.0.0
description: OpenStack-Helm Helm-Toolkit description: OpenStack-Helm Helm-Toolkit
name: helm-toolkit name: helm-toolkit
version: 0.2.3 version: 0.2.4
home: https://docs.openstack.org/openstack-helm home: https://docs.openstack.org/openstack-helm
icon: https://www.openstack.org/themes/openstack/images/project-mascots/OpenStack-Helm/OpenStack_Project_OpenStackHelm_vertical.png icon: https://www.openstack.org/themes/openstack/images/project-mascots/OpenStack-Helm/OpenStack_Project_OpenStackHelm_vertical.png
sources: sources:

View File

@ -37,9 +37,21 @@ OS_SERVICE_DESC="${OS_REGION_NAME}: ${OS_SERVICE_NAME} (${OS_SERVICE_TYPE}) serv
# Get Service ID if it exists # Get Service ID if it exists
unset OS_SERVICE_ID unset OS_SERVICE_ID
# If OS_SERVICE_ID is blank (due to the service not being ready yet) # FIXME - There seems to be an issue once in a while where the
# then wait a few seconds to give it additional time to be ready # openstack service list fails and encounters an error message such as:
# and try again # Unable to establish connection to
# https://keystone-api.openstack.svc.cluster.local:5000/v3/auth/tokens:
# ('Connection aborted.', OSError("(104, 'ECONNRESET')",))
# During an upgrade scenario, this would cause the OS_SERVICE_ID to be blank
# and it would attempt to create a new service when it was not needed.
# This duplciate service would sometimes be used by other services such as
# Horizon and would give an 'Invalid Service Catalog' error.
# This loop allows for a 'retry' of the openstack service list in an
# attempt to get the service list as expected if it does ecounter an error.
# This loop and recheck can be reverted once the underlying issue is addressed.
# If OS_SERVICE_ID is blank then wait a few seconds to give it
# additional time and try again
for i in {1...3} for i in {1...3}
do do
OS_SERVICE_ID=$( openstack service list -f csv --quote none | \ OS_SERVICE_ID=$( openstack service list -f csv --quote none | \