21 lines
471 B
YAML
21 lines
471 B
YAML
######################################
|
|
# INstall Helm3 in cluster #
|
|
######################################
|
|
---
|
|
- name: Read helm3 values
|
|
include_vars:
|
|
file: ../vars/k8s_cluster/helm/helm3.yml
|
|
|
|
- name: Download Helm install script
|
|
get_url:
|
|
url: "{{ helm_install_script }}"
|
|
dest: "~/get_helm.sh"
|
|
mode: 0700
|
|
|
|
- name: Install Helm
|
|
command: "~/get_helm.sh"
|
|
|
|
- name: Delete Helm install script
|
|
file:
|
|
state: absent
|
|
path: "~/get_helm.sh" |