Files
Helm_Charts/tasks/main.yml
2024-02-26 15:46:07 +00:00

14 lines
354 B
YAML

---
- name: check if binary helm already exists
stat:
path: "{{ helm_binary_dir }}/helm"
register: binary_helm_check_result
- name: install binary helm
include_tasks: install.yml
when: not binary_helm_check_result.stat.exists or helm_force_update
- name: Install charts
include_tasks: charts.yml
loop: "{{ helm_charts|default('[]') }}"