Fix letter is lowercase in repositories.yml 21/73821/1
authorCédric Ollivier <cedric.ollivier@orange.com>
Mon, 23 Jan 2023 10:05:31 +0000 (11:05 +0100)
committerCédric Ollivier <cedric.ollivier@orange.com>
Mon, 23 Jan 2023 10:10:05 +0000 (11:10 +0100)
Co-authored-by: Peter Pongracz <peter.1.pongracz@nokia.com>
Change-Id: I78be8192239cad58b25449c106da3e1f558bf13b
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit d17ec335dc198c17e0bf167350f154ec64876d58)

functest_kubernetes/k8stest.py

index fd076bc..1417100 100644 (file)
@@ -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',