summaryrefslogtreecommitdiffstats
path: root/shell/helm-repo-init.sh
blob: 9583bade7a914a4dd62f24d036935543fe7e52a8 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash
# Ensure we fail the job if any steps fail
set -e -o pipefail

mkdir -p ".chartstorage"

chartmuseum --port=6464 --storage="local" --storage-local-rootdir=".chartstorage" &> /dev/null &
helm3 plugin install https://github.com/chartmuseum/helm-push.git
helm3 repo add local http://localhost:6464