You've already forked Helm_Charts
14 lines
359 B
YAML
14 lines
359 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: installation.yml
|
|
when: not binary_helm_check_result.stat.exists or helm_force_update
|
|
|
|
- name: Install charts
|
|
include_tasks: charts.yml
|
|
loop: "{{ helm_charts|default('[]') }}"
|