From 4d119c2b14f14f0842a00a32bde3fa87c8b10ffd Mon Sep 17 00:00:00 2001 From: Chris Evich Date: Wed, 18 Oct 2017 10:09:18 -0400 Subject: [PATCH] Consolidate plays/tasks/tags Simplify use of play-level tagging on three separate plays (with one task). Instead, make them all the same play, and apply the tags at the task level instead. Signed-off-by: Chris Evich --- contrib/test/integration/main.yml | 23 ++++++----------------- 1 file changed, 6 insertions(+), 17 deletions(-) diff --git a/contrib/test/integration/main.yml b/contrib/test/integration/main.yml index 140801ae..b89dc182 100644 --- a/contrib/test/integration/main.yml +++ b/contrib/test/integration/main.yml @@ -57,29 +57,18 @@ vars_files: - "{{ playbook_dir }}/vars.yml" environment: '{{ environment_variables }}' - tags: - - integration - - e2e tasks: - name: Build and install cri-o include: "build/cri-o.yml" + tags: + - always -- hosts: '{{ subjects | default("all") }}' - vars_files: - - "{{ playbook_dir }}/vars.yml" - environment: '{{ environment_variables }}' - tags: - - integration - tasks: - name: run cri-o integration tests include: test.yml + tags: + - integration -- hosts: '{{ subjects | default("all") }}' - vars_files: - - "{{ playbook_dir }}/vars.yml" - environment: '{{ environment_variables }}' - tags: - - e2e - tasks: - name: run k8s e2e tests include: e2e.yml + tags: + - e2e