From 27d3d1af099251ddfba6d8ad56ecdcee418aa37e Mon Sep 17 00:00:00 2001 From: Angie Wang Date: Tue, 13 Aug 2019 10:42:44 -0400 Subject: [PATCH] Support to pull container images from authenticated registries Fix the constants spelling error which was introduced in commit https://review.opendev.org/#/c/673100/. Co-Authored-By: Wayne Chan Change-Id: If00e668c977c540dcd98caaf1207c49ef20897b0 Story: 2006274 Task: 35998 Signed-off-by: Angie Wang --- sysinv/sysinv/sysinv/sysinv/conductor/kube_app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sysinv/sysinv/sysinv/sysinv/conductor/kube_app.py b/sysinv/sysinv/sysinv/sysinv/conductor/kube_app.py index 9615847740..e783501f70 100644 --- a/sysinv/sysinv/sysinv/sysinv/conductor/kube_app.py +++ b/sysinv/sysinv/sysinv/sysinv/conductor/kube_app.py @@ -2381,9 +2381,9 @@ class DockerHelper(object): # quay.io and docker.io or no registry_name specified in image # tag, use user specified docker registry as default registry = self.registries_info[ - constants.SERVICE_PARAM_NAME_DOCKER_DOCKER_REGISTRY]['registry_replaced'] + constants.SERVICE_PARAM_SECTION_DOCKER_DOCKER_REGISTRY]['registry_replaced'] registry_auth = self.registries_info[ - constants.SERVICE_PARAM_NAME_DOCKER_DOCKER_REGISTRY]['registry_auth'] + constants.SERVICE_PARAM_SECTION_DOCKER_DOCKER_REGISTRY]['registry_auth'] if registry: LOG.info("Registry %s not recognized or docker.io repository "