diff options
author | 2019-11-27 10:51:21 +0100 | |
---|---|---|
committer | 2019-11-27 13:17:35 +0100 | |
commit | d036fff82a7a8b8f5d5669f0cb9c96cde1d8aa5a (patch) | |
tree | 56f354e917618d77e1fb01e69b43d03a7a275852 | |
parent | 0913d2e476a99d62abba6358b0ba885c75ba2105 (diff) |
Propose CNTT Compliance playbook
It eases building CI/CD toolchains everywhere veryfing the compliance
between CNTT Chapter 5 API and local platforms.
Change-Id: Ia5375031d5e8cafca808d52c71dde70f80e841e9
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit 3259d7433b8315e0d4dce668c480f1a6594a5fc6)
-rw-r--r-- | ansible/site.cntt.yml | 76 | ||||
-rw-r--r-- | ansible/site.yml | 5 | ||||
-rw-r--r-- | build.sh | 2 |
3 files changed, 76 insertions, 7 deletions
diff --git a/ansible/site.cntt.yml b/ansible/site.cntt.yml new file mode 100644 index 000000000..ff37b54e1 --- /dev/null +++ b/ansible/site.cntt.yml @@ -0,0 +1,76 @@ +--- +- hosts: + - 127.0.0.1 + roles: + - role: collivier.xtesting + project: functest + gerrit_project: functest + docker_tags: + - jerma: + branch: stable/jerma + builds: + dependencies: + - repo: _ + dport: + container: alpine + tag: '3.10' + steps: + - name: build opnfv/functest-core + containers: + - name: functest-core + ref_arg: BRANCH + path: docker/core + - name: build containers + containers: + - name: functest-healthcheck + ref_arg: BRANCH + path: docker/healthcheck + - name: functest-smoke-cntt + ref_arg: BRANCH + path: docker/smoke-cntt + - name: functest-benchmarking-cntt + ref_arg: BRANCH + path: docker/benchmarking-cntt + - name: functest-vnf + ref_arg: + path: docker/vnf + suites: + - container: functest-healthcheck + tests: + - connection_check + - tenantnetwork1 + - tenantnetwork2 + - vmready1 + - vmready2 + - singlevm1 + - singlevm2 + - vping_ssh + - vping_userdata + - cinder_test + - odl + - tempest_smoke + - tempest_horizon + - container: functest-smoke-cntt + tests: + - neutron-tempest-plugin-api + - tempest_cinder + - tempest_keystone + - rally_sanity + - tempest_full + - tempest_scenario + - tempest_slow + - container: functest-benchmarking-cntt + tests: + - rally_full + - rally_jobs + - vmtp + - shaker + - container: functest-vnf + tests: + - cloudify + - cloudify_ims + - heat_ims + - vyos_vrouter + - juju_epc + properties: + execution-type: SEQUENTIALLY diff --git a/ansible/site.yml b/ansible/site.yml index 2848cf570..f9852b585 100644 --- a/ansible/site.yml +++ b/ansible/site.yml @@ -20,11 +20,6 @@ - name: functest-core ref_arg: BRANCH path: docker/core - - name: build opnfv/functest-tempest - containers: - - name: functest-tempest - ref_arg: BRANCH - path: docker/tempest - name: build containers containers: - name: functest-healthcheck @@ -5,7 +5,6 @@ set -e repo=${REPO:-opnfv} amd64_dirs=${amd64_dirs-"\ docker/core \ -docker/tempest \ docker/healthcheck \ docker/smoke \ docker/benchmarking \ @@ -14,7 +13,6 @@ docker/smoke-cntt \ docker/benchmarking-cntt"} arm_dirs=${arm_dirs-"\ docker/core \ -docker/tempest \ docker/healthcheck \ docker/smoke \ docker/benchmarking \ |