homeserver/roles/geerlingguy.helm/tasks/main.yml
mg 88a2d34183 k3s - Umzug Apps (#430)
## ToDo

- entfernte Apps ergänzen in Beschreibung

### Entfernt

- dozzle
- Photoprism
- hastebin

Co-authored-by: Michael Grote <michael.grote@posteo.de>
Reviewed-on: #430
2022-11-24 16:24:21 +01:00

32 lines
780 B
YAML

---
- name: Check if Helm binary exists.
stat:
path: "{{ helm_bin_path }}"
register: helm_check
- name: Check Helm version.
command: "{{ helm_bin_path }} version"
failed_when: false
changed_when: false
register: helm_existing_version
- name: Download helm.
unarchive:
src: "{{ helm_repo_path }}/helm-{{ helm_version }}-{{ helm_platform }}-{{ helm_arch }}.tar.gz"
dest: /tmp
remote_src: true
mode: 0755
register: helm_download
when: >
not helm_check.stat.exists
or helm_version not in helm_existing_version.stdout
- name: Copy helm binary into place.
copy:
src: "/tmp/{{ helm_platform }}-{{ helm_arch }}/helm"
dest: "{{ helm_bin_path }}"
mode: 0755
remote_src: true
become: true
when: helm_download is changed