Initial commit

This commit is contained in:
2024-02-26 18:22:30 +03:00
commit 448035f50f
8 changed files with 137 additions and 0 deletions

13
tasks/main.yml Normal file
View 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('[]') }}"