summaryrefslogtreecommitdiffstats
path: root/ansible/test/roles/prepare-helm/tasks/main.yml
blob: d6fabae9bc178ebee15d595c7a3613c132e4c2cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
---
- name: "Ensure {{ app_data_path }}/downloads directory exists"
  file:
    path: "{{ app_data_path }}/downloads"
    recurse: true
    state: directory

- name: "Download helm-{{ helm_version }}"
  get_url:
    url: "https://get.helm.sh/helm-v{{ helm_version }}-linux-amd64.tar.gz"
    dest: "{{ app_data_path }}/downloads"
    remote_src: true