summaryrefslogtreecommitdiffstats
path: root/shell/helm-repo-init.sh
blob: 937f0e7d0485cd7602b3786b328a32b576eacf29 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/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 &
source helm.prop
$HELM_BIN plugin install https://github.com/chartmuseum/helm-push.git
$HELM_BIN repo add local http://localhost:6464
$HELM_BIN repo add onap http://localhost:6464