Skip to content

Commit

Permalink
allow to configure delay in helm charts
Browse files Browse the repository at this point in the history
  • Loading branch information
ghormoon committed Mar 27, 2024
1 parent 3cdcb5f commit f17f283
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roles/helm/tasks/charts_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
- helm.packages_list is defined
- ( item.namespace is not defined ) or ( item.namespace == "" )
retries: 3
delay: 3
delay: "{{ CHARTS_DELAY | default(3) }}"
register: result
until: result is not failed

Expand All @@ -72,7 +72,7 @@
- item.namespace is defined
- item.namespace != ""
retries: 3
delay: 3
delay: "{{ CHARTS_DELAY | default(3) }}"
register: result
until: result is not failed

Expand Down

0 comments on commit f17f283

Please sign in to comment.