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" |
Sylvain Desbureaux | 9345ad8 | 2021-01-05 13:21:44 +0100 | [diff] [blame] | 6 | |
| 7 | chartmuseum --port=6464 --storage="local" --storage-local-rootdir=".chartstorage" &> /dev/null & |
Sylvain Desbureaux | 5657eda | 2020-11-26 10:25:39 +0100 | [diff] [blame] | 8 | helm3 plugin install https://github.com/chartmuseum/helm-push.git |
| 9 | helm3 repo add local http://localhost:6464 |