You've already forked Helm_Charts
Initial commit
This commit is contained in:
13
tasks/main.yml
Normal file
13
tasks/main.yml
Normal file
@@ -0,0 +1,13 @@
|
||||
---
|
||||
- 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 helm.stat.exists or helm_force_update
|
||||
|
||||
- name: Install charts
|
||||
include_tasks: charts.yml
|
||||
loop: "{{ helm_charts|default('[]') }}"
|
||||
Reference in New Issue
Block a user