From 1cd6a38f9751c2d26e07f11b95db91ad0c195927 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Sun, 22 Nov 2020 12:09:12 +0100 Subject: Allow offline testing via xrally_kubernetes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It locally patches xrally_kubernetes before [1] is merged upstream. It adds docker.io/appropriate/curl:edge in download_images.sh too. [1] https://github.com/xrally/xrally-kubernetes/pull/51 Co-Authored-By: Tamas Lendvay Change-Id: I82ea2c777cd4d8f24c38dbf32d66081846e3e9af Signed-off-by: Cédric Ollivier (cherry picked from commit ea2715240015a482c5321d309257d801a412f02d) --- ...ow-offline-testing-in-PodWithClusterIPSvc.patch | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 docker/core/Allow-offline-testing-in-PodWithClusterIPSvc.patch (limited to 'docker/core/Allow-offline-testing-in-PodWithClusterIPSvc.patch') diff --git a/docker/core/Allow-offline-testing-in-PodWithClusterIPSvc.patch b/docker/core/Allow-offline-testing-in-PodWithClusterIPSvc.patch new file mode 100644 index 00000000..6eca17fa --- /dev/null +++ b/docker/core/Allow-offline-testing-in-PodWithClusterIPSvc.patch @@ -0,0 +1,31 @@ +From 220ee016272f7760fffb9df3213ed93ec77e7948 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?C=C3=A9dric=20Ollivier?= +Date: Sun, 22 Nov 2020 11:54:05 +0100 +Subject: [PATCH] Allow offline testing in PodWithClusterIPSvc +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +It sets edge as image tag for appropriate/curl not to force a download. + +Signed-off-by: Cédric Ollivier +--- + xrally_kubernetes/tasks/scenarios/services.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/xrally_kubernetes/tasks/scenarios/services.py b/xrally_kubernetes/tasks/scenarios/services.py +index f1b4fa0..05db477 100644 +--- a/xrally_kubernetes/tasks/scenarios/services.py ++++ b/xrally_kubernetes/tasks/scenarios/services.py +@@ -93,7 +93,7 @@ class PodWithClusterIPSvc(common_scenario.BaseKubernetesScenario): + self.client.create_job( + name=name, + namespace=namespace, +- image="appropriate/curl", ++ image="appropriate/curl:edge", + command=command, + status_wait=True + ) +-- +2.29.2 + -- cgit 1.2.3-korg