From e9be350fc9b664fab4933612998707a2de953665 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 5dbee58f..6ec37bcf 100644 --- a/functest_kubernetes/k8stest.py +++ b/functest_kubernetes/k8stest.py @@ -133,22 +133,22 @@ 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": "{}/authenticated-image-pulling".format( + "gcAuthenticatedRegistry": "{}/authenticated-image-pulling".format( gcr_repo), - "E2eRegistry": "{}/kubernetes-e2e-test-images".format( + "e2eRegistry": "{}/kubernetes-e2e-test-images".format( gcr_repo), - "PromoterE2eRegistry": "{}/e2e-test-images".format( + "promoterE2eRegistry": "{}/e2e-test-images".format( k8s_gcr_repo), - "BuildImageRegistry": "{}/build-image".format(k8s_gcr_repo), - "InvalidRegistry": "invalid.com/invalid", - "GcEtcdRegistry": "{}".format(k8s_gcr_repo), - "GcRegistry": "{}".format(k8s_gcr_repo), - "SigStorageRegistry": "{}/sig-storage".format(k8s_gcr_repo), - "PrivateRegistry": "{}/k8s-authenticated-test".format( + "buildImageRegistry": "{}/build-image".format(k8s_gcr_repo), + "invalidRegistry": "invalid.com/invalid", + "gcEtcdRegistry": "{}".format(k8s_gcr_repo), + "gcRegistry": "{}".format(k8s_gcr_repo), + "sigStorageRegistry": "{}/sig-storage".format(k8s_gcr_repo), + "privateRegistry": "{}/k8s-authenticated-test".format( gcr_repo), - "SampleRegistry": "{}/google-samples".format(gcr_repo), - "GcrReleaseRegistry": "{}/gke-release".format(gcr_repo), - "MicrosoftRegistry": "mcr.microsoft.com", + "sampleRegistry": "{}/google-samples".format(gcr_repo), + "gcrReleaseRegistry": "{}/gke-release".format(gcr_repo), + "microsoftRegistry": "mcr.microsoft.com", } with open("{}/repositories.yml".format( self.res_dir), 'w', encoding='utf-8') as file: -- cgit 1.2.3-korg