images/helm-chart-collator/playbooks/roles/ensure_helm/tasks/main.yaml
Ian Howell 116eb2cc93 Add a Helm chart collator
This adds a Dockerfile for an image which works as a Helm chart
repository. Charts can be pulled from either pre-existing
Helm repos or from git repos.

Change-Id: I860394eea3c322f2b142ea00dd7cc0a6916c34d5
2020-07-02 14:27:46 -05:00

13 lines
279 B
YAML

---
- name: download and unarchive helm
unarchive:
src: https://get.helm.sh/helm-v3.2.3-linux-amd64.tar.gz
remote_src: yes
dest: /
- name: move helm into the path
command: mv /linux-amd64/helm /bin/helm
- name: assert helm is executable
command: helm version