Refine templating #5
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-07-09 12:35:29 +02:00
parent 243cf426d7
commit abacbf90ce
2 changed files with 34 additions and 34 deletions

View File

@ -25,7 +25,7 @@
- name: Aggregate chart_values into dict
ansible.builtin.set_fact:
chart_values: "{{ chart_values | default({}) | combine({ item.key: (item.value.helm.chart_values | default('~')) }) }}"
chart_values: "{{ chart_values | default({}) | combine({ item.key: { 'chart_values': (item.value.helm.chart_values | default('~')) } }) }}"
loop: "{{ lookup('ansible.builtin.dict', components) }}"
loop_control:
label: "{{ item.key }}"