communishift: fix task syntax

Signed-off-by: David Kirwan <davidkirwanirl@gmail.com>
This commit is contained in:
David Kirwan 2024-10-24 14:01:26 +01:00
parent 8a30fc6118
commit 339b3e0231
No known key found for this signature in database
GPG key ID: A5893AB6474AC37D
2 changed files with 2 additions and 2 deletions

View file

@ -14,7 +14,7 @@
- Reply-To=admin@fedoraproject.org
charset: us-ascii
delegate_to: localhost
when: {{ not item.value.do_not_delete | bool }}
when: "{{ not item.value.do_not_delete | bool }}"
tags:
- communishift_send_notifications
- never # Only send notifications when the tag communishift_send_notifications is passed

View file

@ -2,7 +2,7 @@
- name: "Offboard the Communishift tenant project: {{ item.value.name }}"
debug:
msg: "delete task for project: {{ item.value.name }}"
when: {{ not item.value.do_not_delete | bool }}
when: "{{ not item.value.do_not_delete | bool }}"
tags:
- communishift_cluster_cleanup
- never # Only run this task when the communishift_cluster_cleanup tag is called