Add retries
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Danny Bessems 2022-11-17 10:51:27 +01:00
parent 44daf9191a
commit 3a48676ca7
1 changed files with 5 additions and 0 deletions

View File

@ -23,9 +23,14 @@
cmd: helm fetch {{ item.value.helm.chart }} --untar --version {{ item.value.helm.version }}
chdir: /opt/metacluster/helm-charts
when: item.value.helm is defined
register: helmcharts
loop: "{{ lookup('ansible.builtin.dict', components) }}"
loop_control:
label: "{{ item.key }}"
retries: 5
delay: 5
until: helmcharts is not failed
- block: