Revert debugging;Switch ansible module
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-06-27 09:56:48 +02:00
parent 123518a787
commit f1c6161bcb
2 changed files with 2 additions and 3 deletions

View File

@ -22,8 +22,8 @@
label: "{{ item.key }}"
- name: Parse helm charts for container images
ansible.builtin.command:
cmd: "helm template . | yq --no-doc e '.. | .image? | select(.)' - | sort -u"
ansible.builtin.shell:
cmd: helm template . | yq --no-doc eval '.. | .image? | select(.)' - | sort -u
chdir: /opt/metacluster/helm-charts/{{ item.key }}
register: containerimages
loop: "{{ lookup('ansible.builtin.dict', components) }}"