add files

This commit is contained in:
B4D_US3R 2024-11-27 22:24:24 +05:00
parent 1283a98c9d
commit 33e2774432
11 changed files with 152 additions and 0 deletions

19
roles/helm/tasks/main.yml Normal file
View file

@ -0,0 +1,19 @@
---
- name: Get Helm binary
unarchive:
src: "https://get.helm.sh/helm-{{ helm_version }}-linux-amd64.tar.gz"
dest: /tmp
remote_src: true
- name: Copy helm binary to /usr/local/bin
copy:
src: /tmp/linux-amd64/helm
dest: /usr/local/bin/helm
owner: root
group: root
mode: 755
- name: Cleanup
file:
path: /tmp/linux-amd64
state: absent