Add flag to prevent running helm update (#10169)

Signed-off-by: Pat Riehecky <riehecky@fnal.gov>
pull/10081/head
Pat Riehecky 2023-06-23 08:03:23 -05:00 committed by GitHub
parent a1521dc16e
commit 2fa64f9fd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -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) }}"

View File

@ -1,4 +1,6 @@
---
helm_update: true
helm_defaults:
atomic: true
binary_path: "{{ bin_dir }}/helm"