From 6ae8eed0339b8381f627f95905cd41464fe79796 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Tue, 5 May 2020 23:43:23 +0200 Subject: Try a quick fix vs the race conditions in xrally MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I57a4c317ba365586c10b13d425aac021dd030949 Signed-off-by: Cédric Ollivier (cherry picked from commit 81139b1576981990f32df76719f179441e4d12ee) (cherry picked from commit 2a2744f1e612a1ed0a38cadd2b49100613da70d6) --- .../Try-a-quick-fix-vs-asynchronuous-issues.patch | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 docker/core/Try-a-quick-fix-vs-asynchronuous-issues.patch (limited to 'docker/core/Try-a-quick-fix-vs-asynchronuous-issues.patch') diff --git a/docker/core/Try-a-quick-fix-vs-asynchronuous-issues.patch b/docker/core/Try-a-quick-fix-vs-asynchronuous-issues.patch new file mode 100644 index 00000000..67c850fa --- /dev/null +++ b/docker/core/Try-a-quick-fix-vs-asynchronuous-issues.patch @@ -0,0 +1,31 @@ +From 30fa786dd108ac5368da755c504ac20295eaf4e8 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?C=C3=A9dric=20Ollivier?= +Date: Tue, 5 May 2020 23:36:21 +0200 +Subject: [PATCH] Try a quick fix vs asynchronuous issues +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +It will confirm the issues as seen in Functest gates. + +Signed-off-by: Cédric Ollivier +--- + xrally_kubernetes/service.py | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/xrally_kubernetes/service.py b/xrally_kubernetes/service.py +index c5f0b7d..a8ad25d 100644 +--- a/xrally_kubernetes/service.py ++++ b/xrally_kubernetes/service.py +@@ -308,6 +308,8 @@ class Kubernetes(service.Service): + } + self.v1_client.create_namespaced_service_account(namespace=namespace, + body=sa_manifest) ++ # it prevents from the asynchronuous issues as seen in gates ++ commonutils.interruptable_sleep(CONF.kubernetes.start_prepoll_delay) + + @atomic.action_timer("kubernetes.create_secret") + def create_secret(self, name, namespace): +-- +2.26.2 + -- cgit 1.2.3-korg