summaryrefslogtreecommitdiffstats
path: root/ansible/test/roles/prepare-helm/tasks/main.yml
blob: 1f461258360313fdd9cde41ebb5d93334c1d222e (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-{{ helm_version }}-linux-amd64.tar.gz"
    dest: "{{ app_data_path }}/downloads"
    remote_src: true