mirror of
https://github.com/ansible-collections/kubernetes.core.git
synced 2026-05-03 19:42:36 +00:00
Helm - Fix issue with alternative kubeconfig SUMMARY closes #538 ISSUE TYPE Bugfix Pull Request COMPONENT NAME helm modules Reviewed-by: Mike Graves <mgraves@redhat.com>
16 lines
331 B
YAML
16 lines
331 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 | default(helm_default_archive_name) }}'
|
|
dest: /tmp/helm/
|
|
remote_src: yes
|
|
retries: 10
|
|
delay: 5
|
|
register: result
|
|
until: result is not failed
|