add files
This commit is contained in:
parent
1283a98c9d
commit
33e2774432
11 changed files with 152 additions and 0 deletions
19
roles/helm/tasks/main.yml
Normal file
19
roles/helm/tasks/main.yml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue