From 30427af8a885dd1a9fcbc28c5fc8ea3b19debdc6 Mon Sep 17 00:00:00 2001 From: mamutmk5 <3045922+mamutmk5@users.noreply.github.com> Date: Mon, 19 Aug 2024 16:29:58 +0200 Subject: [PATCH] BC-7854 - split Ansible Jobs by Tags (#11) --- ansible/roles/h5p-staticfiles-server-core/tasks/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ansible/roles/h5p-staticfiles-server-core/tasks/main.yml b/ansible/roles/h5p-staticfiles-server-core/tasks/main.yml index d73fcbb..79bfe04 100644 --- a/ansible/roles/h5p-staticfiles-server-core/tasks/main.yml +++ b/ansible/roles/h5p-staticfiles-server-core/tasks/main.yml @@ -4,6 +4,8 @@ namespace: "{{ NAMESPACE }}" template: svc.yml.j2 when: WITH_H5P_EDITOR is defined and WITH_H5P_EDITOR|bool + tags: + - service - name: Configmap kubernetes.core.k8s: @@ -12,6 +14,8 @@ template: configmap.yml.j2 apply: yes when: WITH_H5P_EDITOR is defined and WITH_H5P_EDITOR|bool + tags: + - configmap - name: Deployment kubernetes.core.k8s: @@ -19,3 +23,5 @@ namespace: "{{ NAMESPACE }}" template: deployment.yml.j2 when: WITH_H5P_EDITOR is defined and WITH_H5P_EDITOR|bool + tags: + - deployment