Add flag to prevent running helm update (#10169)
Signed-off-by: Pat Riehecky <riehecky@fnal.gov>pull/10081/head
parent
a1521dc16e
commit
2fa64f9fd6
|
@ -10,7 +10,9 @@
|
|||
release_name: dummy # trick needed to refresh in separate step
|
||||
release_namespace: kube-system
|
||||
update_repo_cache: true
|
||||
when: repositories != []
|
||||
when:
|
||||
- repositories != []
|
||||
- helm_update
|
||||
|
||||
- name: Install Helm Applications
|
||||
kubernetes.core.helm: "{{ helm_defaults | combine(release_common_opts, item) }}"
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
---
|
||||
helm_update: true
|
||||
|
||||
helm_defaults:
|
||||
atomic: true
|
||||
binary_path: "{{ bin_dir }}/helm"
|
||||
|
|
Loading…
Reference in New Issue