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:48:19 +0100 |
commit | de7d5819ba091127ee1ecf48f4f91818e70ce27b (patch) | |
tree | 8e68ab0eb209fd395cceeb98e4d988b06145ef78 | |
parent | 6c0a169e86af8336ba4204cecae9c4f8a9578453 (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 709070a2..ff66642b 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 43bb3f04..2288ae77 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 3b8a0539..3b40b3bf 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 |