diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2021-04-02 09:52:38 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2021-04-02 09:52:38 +0200 |
commit | 4004d776b01a1b038df52ca45b18430da1b6b1f5 (patch) | |
tree | 37048aff908d2c24a882a6eeff7d3520c0479d68 /docker/healthcheck | |
parent | 17929b0d015034bad2796fb733627fe5b23bbb2d (diff) |
Properly manage e2e parallel testing
It sets nodes=25 to run all tests in parallel.
It also beautifies all testcases.yml
Change-Id: I3ecd8899e957c0efbef34ab0409c2b4d557c9425
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'docker/healthcheck')
-rw-r--r-- | docker/healthcheck/testcases.yaml | 65 |
1 files changed, 32 insertions, 33 deletions
diff --git a/docker/healthcheck/testcases.yaml b/docker/healthcheck/testcases.yaml index 466b8ae8..874685cb 100644 --- a/docker/healthcheck/testcases.yaml +++ b/docker/healthcheck/testcases.yaml @@ -1,36 +1,35 @@ --- tiers: - - - name: healthcheck + - name: healthcheck + description: >- + A set of e2e tests integrated from kubernetes project. + testcases: + - case_name: k8s_quick + project_name: functest + criteria: 100 + blocking: false description: >- - A set of e2e tests integrated from kubernetes project. - testcases: - - - case_name: k8s_quick - project_name: functest - criteria: 100 - blocking: false - description: >- - It runs just a single test, helping to quickly validate the - Kubernetes configuration as proposed by Sonobuoy. - dependencies: - - DEPLOY_SCENARIO: 'k8-*' - run: - name: e2e_testing - args: - focus: Pods should be submitted and removed - - - case_name: k8s_smoke - project_name: functest - criteria: 100 - blocking: false - description: >- - Smoke Tests a running Kubernetes cluster, which - validates the deployed cluster is accessible, and - at least satisfies minimal functional requirements. - dependencies: - - DEPLOY_SCENARIO: 'k8-*' - run: - name: e2e_testing - args: - focus: Kubectl client Guestbook application + It runs just a single test, helping to quickly validate the + Kubernetes configuration as proposed by Sonobuoy. + dependencies: + - DEPLOY_SCENARIO: "k8-*" + run: + name: e2e_testing + args: + ginkgo: + focus: Pods should be submitted and removed + - case_name: k8s_smoke + project_name: functest + criteria: 100 + blocking: false + description: >- + Smoke Tests a running Kubernetes cluster, which + validates the deployed cluster is accessible, and + at least satisfies minimal functional requirements. + dependencies: + - DEPLOY_SCENARIO: "k8-*" + run: + name: e2e_testing + args: + ginkgo: + focus: Kubectl client Guestbook application |