Skip to content

Commit

Permalink
fix: install helm script fails (#88)
Browse files Browse the repository at this point in the history
SHA1 verification of the helm binary downloaded fails
  • Loading branch information
Toubi Mohamed authored May 12, 2021
1 parent 580fd7e commit 582d6e4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions group_vars/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,6 @@ tmp_dir: /tmp/kubeadm-ansible-files

# Container runtimes ('containerd', 'crio')
container_runtime: containerd

# helm helm version
helm_version: "v2.17.0"
4 changes: 3 additions & 1 deletion roles/helm/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@
url: https://raw.githubusercontent.com/helm/helm/master/scripts/get
dest: "{{ tmp_dir }}/get_helm.sh"
mode: 0755

- name: "Run the installer"
environment:
DESIRED_VERSION: "{{ helm_version }}"
shell: "{{ tmp_dir }}/get_helm.sh"

when: helm_exists.rc > 0
Expand Down

0 comments on commit 582d6e4

Please sign in to comment.