From 8bf3eebe47ab746c2dc8a795b87fe783cba156d1 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Mon, 23 Jan 2023 11:05:31 +0100 Subject: Fix letter is lowercase in repositories.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Peter Pongracz Change-Id: I78be8192239cad58b25449c106da3e1f558bf13b Signed-off-by: Cédric Ollivier (cherry picked from commit d17ec335dc198c17e0bf167350f154ec64876d58) --- functest_kubernetes/k8stest.py | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/functest_kubernetes/k8stest.py b/functest_kubernetes/k8stest.py index 39925f4b..28afa647 100644 --- a/functest_kubernetes/k8stest.py +++ b/functest_kubernetes/k8stest.py @@ -131,19 +131,19 @@ class E2ETesting(testcase.TestCase): gcr_repo = os.getenv("GCR_REPO", self.gcr_repo) k8s_gcr_repo = os.getenv("K8S_GCR_REPO", self.k8s_gcr_repo) repo_list = { - "GcAuthenticatedRegistry": + "gcAuthenticatedRegistry": f"{gcr_repo}/authenticated-image-pulling", - "E2eRegistry": f"{gcr_repo}/kubernetes-e2e-test-images", - "PromoterE2eRegistry": f"{k8s_gcr_repo}/e2e-test-images", - "BuildImageRegistry": f"{k8s_gcr_repo}/build-image", - "InvalidRegistry": "invalid.com/invalid", - "GcEtcdRegistry": k8s_gcr_repo, - "GcRegistry": k8s_gcr_repo, - "SigStorageRegistry": f"{k8s_gcr_repo}/sig-storage", - "PrivateRegistry": f"{gcr_repo}/k8s-authenticated-test", - "SampleRegistry": f"{gcr_repo}/google-samples", - "GcrReleaseRegistry": f"{gcr_repo}/gke-release", - "MicrosoftRegistry": "mcr.microsoft.com" + "e2eRegistry": f"{gcr_repo}/kubernetes-e2e-test-images", + "promoterE2eRegistry": f"{k8s_gcr_repo}/e2e-test-images", + "buildImageRegistry": f"{k8s_gcr_repo}/build-image", + "invalidRegistry": "invalid.com/invalid", + "gcEtcdRegistry": k8s_gcr_repo, + "gcRegistry": k8s_gcr_repo, + "sigStorageRegistry": f"{k8s_gcr_repo}/sig-storage", + "privateRegistry": f"{gcr_repo}/k8s-authenticated-test", + "sampleRegistry": f"{gcr_repo}/google-samples", + "gcrReleaseRegistry": f"{gcr_repo}/gke-release", + "microsoftRegistry": "mcr.microsoft.com" } with open( f"{self.res_dir}/repositories.yml", 'w', -- cgit 1.2.3-korg