Jeremy Phelps | 08126d8 | 2018-08-07 11:08:48 -0500 | [diff] [blame] | 1 | #!/bin/bash |
2 | # Ensure we fail the job if any steps fail | ||||
3 | set -e -o pipefail | ||||
4 | |||||
Sylvain Desbureaux | 5657eda | 2020-11-26 10:25:39 +0100 | [diff] [blame^] | 5 | mkdir -p ".chartstorage" |
6 | chartmuseum --port=6464 --storage="local" --storage-local-rootdir=".chartstorage" & | ||||
7 | helm3 plugin install https://github.com/chartmuseum/helm-push.git | ||||
8 | helm3 repo add local http://localhost:6464 |