Fix parenthesis
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Danny Bessems 2022-07-11 13:37:55 +02:00
parent 93e7d4dc9b
commit 0918eb36fe
1 changed files with 1 additions and 1 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 | regex_replace('[^A-Za-z0-9]', ''): { 'chart_values': (item.value.helm.chart_values | from_yaml) } }) }}"
chart_values: "{{ chart_values | default({}) | combine({ (item.key | regex_replace('[^A-Za-z0-9]', '')): { 'chart_values': (item.value.helm.chart_values | from_yaml) } }) }}"
when: item.value.helm.chart_values is defined
loop: "{{ lookup('ansible.builtin.dict', components) }}"
loop_control: