Allow customization to setup the environment

Added default variable repo name to download packages

Change-Id: Iabbe85973646b5cb98a59a4570061f76a70b8b55
This commit is contained in:
Dinesh Garg 2020-12-15 08:22:21 +00:00 committed by dg012m
parent de63cdf6d4
commit 5bf8b0084d
2 changed files with 3 additions and 1 deletions

View File

@ -0,0 +1 @@
repo_name: "https://get.helm.sh"

View File

@ -18,8 +18,9 @@
- name: Download Helm
unarchive:
remote_src: true
src: "https://get.helm.sh/helm-v{{ version.helm }}-linux-amd64.tar.gz"
src: "{{ repo_name }}/helm-v{{ version.helm }}-linux-amd64.tar.gz"
dest: /tmp
- name: Install Helm
become: true
copy: