Debugging & revert override logic
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Danny Bessems 2022-06-27 19:43:07 +02:00
parent 52660e1414
commit 4ba7b590ba
1 changed files with 8 additions and 1 deletions

View File

@ -21,10 +21,17 @@
loop_control:
label: "{{ item.key }}"
- ansible.builtin.command:
cmd: ls /opt/metacluster/helm-charts -lashR
register: result
- ansible.builtin.debug:
var: result
- name: Parse helm charts for container images
ansible.builtin.shell:
cmd: "{{ item.value.helm.parse_logic }}"
chdir: /opt/metacluster/helm-charts/{{ item.value.helm.basedir | default(item.key) }}
chdir: /opt/metacluster/helm-charts/{{ item.key }}
# chdir: /opt/metacluster/helm-charts/{{ item.value.helm.basedir | default(item.key) }}
register: containerimages
loop: "{{ lookup('ansible.builtin.dict', components) }}"
loop_control: