116eb2cc93
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
13 lines
279 B
YAML
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
|