diff options
author | pmikus <pmikus@cisco.com> | 2021-02-10 08:14:40 +0000 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2021-02-17 08:52:05 +0000 |
commit | a9817d4b5ce0296062b49e100705661f32b77dc6 (patch) | |
tree | 5ef56a0d45801dbcb8dded2e0cf405dc5518fdb2 /resources/tools/testbed-setup/ansible/roles/cleanup/tasks/main.yaml | |
parent | bb982ded24c87f3cbc2f84e41d85e426cd9092a4 (diff) |
Infra: Ansible docker images cleanup
Signed-off-by: pmikus <pmikus@cisco.com>
Change-Id: I8d67b8ad5db5c0a7c9b3fa892e1e66dab2f666d0
Diffstat (limited to 'resources/tools/testbed-setup/ansible/roles/cleanup/tasks/main.yaml')
-rw-r--r-- | resources/tools/testbed-setup/ansible/roles/cleanup/tasks/main.yaml | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/resources/tools/testbed-setup/ansible/roles/cleanup/tasks/main.yaml b/resources/tools/testbed-setup/ansible/roles/cleanup/tasks/main.yaml index 64a55c4672..eeda0139b3 100644 --- a/resources/tools/testbed-setup/ansible/roles/cleanup/tasks/main.yaml +++ b/resources/tools/testbed-setup/ansible/roles/cleanup/tasks/main.yaml @@ -14,18 +14,30 @@ # - vpp_device # - Run tasks on vpp_device servers only. # - Reset SRIOV +# - Docker image cleanup +# - nomad +# - Docker image cleanup - name: tg specific include_tasks: tg.yaml when: "'tg' in group_names" - tags: cleanup + tags: + - cleanup - name: sut specific include_tasks: sut.yaml when: "'sut' in group_names" - tags: cleanup + tags: + - cleanup - name: vpp_device specific include_tasks: vpp_device.yaml when: "'vpp_device' in group_names" - tags: cleanup + tags: + - cleanup + +- name: nomad specific + include_tasks: nomad.yaml + when: "'nomad' in group_names" + tags: + - cleanup |