summaryrefslogtreecommitdiffstats
path: root/ansible/roles/helm/tasks/main.yml
blob: c1b4710387d1704a2f74e70a71c961dc0b1b50a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
---
- name: Install Helm
  unarchive:
    src: "{{ app_data_path }}/downloads/helm-{{ helm_version }}-linux-amd64.tar.gz"
    dest: "{{ helm_bin_dir }}"
    extra_opts:
      - --strip=1
      - --wildcards
      - '*/helm'
    remote_src: true
    mode: 0755