A git repository to test various configurations of the renovate bot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
900 B

- name: Download Helm
get_url:
url: '{{ helm_download_url }}'
dest: /usr/local/src/{{ helm_download_url | basename }}
- name: Install Helm
unarchive:
src: /usr/local/src/{{ helm_download_url | basename }}
dest: /usr/local/sbin
remote_src: yes
# In Ansible 2.11, it will be possible to use "include" instead...
exclude:
- linux-amd64/README.md
- linux-amd64/LICENSE
extra_opts:
- --strip-components=1
owner: root
group: root
mode: 0755
- name: Download the Tekton CLI
get_url:
url: '{{ tkn_download_url }}'
dest: /usr/local/src/{{ tkn_download_url | basename }}
- name: Install the Tekton CLI
unarchive:
src: /usr/local/src/{{ tkn_download_url | basename }}
dest: /usr/local/sbin
remote_src: yes
# In Ansible 2.11, it will be possible to use "include" instead...
owner: root
group: root
mode: 0755