diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2020-11-12 17:26:25 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2020-11-12 17:44:56 +0100 |
commit | 8fc09e9948b8e1fc642ac3a25b5794e7ecf56f40 (patch) | |
tree | 3bae5d64beba5723e884307e5a9eddd41fb89002 | |
parent | 7ce5f0ecee36baaffd772c65e1bb893fc8a561bd (diff) |
Add timeout as needed by Gitlab CI/CD
Gitlab CI/CD sets 1h as default timeout.
The timeout is valid for both test cases even if only k8s_conformance
reaches 1h (XtestingCI design).
Change-Id: Ieaef1cefb3dfc7f9ca47b1ce8ec082409fa52604
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit f38caec124b925f8c633f9d8b4474bd1085638a2)
-rw-r--r-- | ansible/site.cntt.yml | 1 | ||||
-rw-r--r-- | ansible/site.gate.yml | 1 | ||||
-rw-r--r-- | ansible/site.yml | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/ansible/site.cntt.yml b/ansible/site.cntt.yml index 0070a726..8f5fab92 100644 --- a/ansible/site.cntt.yml +++ b/ansible/site.cntt.yml @@ -13,6 +13,7 @@ - k8s_quick - k8s_smoke - container: functest-kubernetes-smoke + timeout: 3h tests: - xrally_kubernetes - k8s_conformance diff --git a/ansible/site.gate.yml b/ansible/site.gate.yml index cb269eb6..4542fb13 100644 --- a/ansible/site.gate.yml +++ b/ansible/site.gate.yml @@ -47,6 +47,7 @@ - k8s_quick - k8s_smoke - container: functest-kubernetes-smoke + timeout: 3h tests: - xrally_kubernetes - k8s_conformance diff --git a/ansible/site.yml b/ansible/site.yml index 1686ba2f..4430df7b 100644 --- a/ansible/site.yml +++ b/ansible/site.yml @@ -13,6 +13,7 @@ - k8s_quick - k8s_smoke - container: functest-kubernetes-smoke + timeout: 3h tests: - xrally_kubernetes - k8s_conformance |