Revert debugging;Switch ansible module
continuous-integration/drone/push Build is passing Details

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

View File

@ -18,7 +18,6 @@ steps:
- ovftool --version
- packer --version
- yamllint --version
- yq --version
- name: Kubernetes Bootstrap Appliance
image: bv11-cr01.bessems.eu/library/packer-extended
pull: always

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) }}"