Skip to content

Commit 094c5a7

Browse files
ghormoonReSearchITEng
authored andcommitted
allow to configure delay in helm charts
1 parent d3c7c6a commit 094c5a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roles/helm/tasks/charts_deploy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
- helm.packages_list is defined
5353
- ( item.namespace is not defined ) or ( item.namespace == "" )
5454
retries: 3
55-
delay: 3
55+
delay: "{{ CHARTS_DELAY | default(3) }}"
5656
register: result
5757
until: result is not failed
5858

@@ -72,7 +72,7 @@
7272
- item.namespace is defined
7373
- item.namespace != ""
7474
retries: 3
75-
delay: 3
75+
delay: "{{ CHARTS_DELAY | default(3) }}"
7676
register: result
7777
until: result is not failed
7878

0 commit comments

Comments
 (0)