Remove redundant quotes
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2022-06-26 18:32:05 +02:00
parent 59d1730ca5
commit f6993c2052
3 changed files with 17 additions and 1 deletions

View File

@ -28,7 +28,7 @@
- name: Parse helm charts for container images
ansible.builtin.command:
cmd: "{{ item.value.parse_cmd }}" /opt/metacluster/helm-charts/{{ item.key }}/values.yaml"
cmd: "{{ item.value.parse_cmd }} /opt/metacluster/helm-charts/{{ item.key }}/values.yaml"
register: containerimages
loop: "{{ lookup('ansible.builtin.dict', components) }}"
# loop_control:
@ -42,3 +42,10 @@
# cmd: skopeo copy docker://{{ item }} docker-archive:./{{ ( item | regex_findall('[^/:]+'))[-2] }}.tar:{{ item }}
# chdir: /opt/metacluster/container-images
# loop: ...
# - name: Compress tarballs
# community.general.archive:
# dest: /opt/metacluster/container-images/{{ item | regex_findall('[^/:]+'))[-2] }}.tar.gz
# path: /opt/metacluster/container-images/{{ item | regex_findall('[^/:]+'))[-2] }}.tar
# remove: yes
# loop: ...