mirror of
https://github.com/ansible-collections/kubernetes.core.git
synced 2026-05-07 05:22:39 +00:00
12 lines
220 B
YAML
12 lines
220 B
YAML
---
|
|
- name: Init Helm folders
|
|
file:
|
|
path: /tmp/helm/
|
|
state: directory
|
|
|
|
- name: Unarchive Helm binary
|
|
unarchive:
|
|
src: 'https://get.helm.sh/{{ helm_archive_name }}'
|
|
dest: /tmp/helm/
|
|
remote_src: yes
|