Skip to content

Commit 40319b0

Browse files
Add script to facilitate publishing new helm charts
Signed-off-by: Richard Chapman <[email protected]>
1 parent f6ca423 commit 40319b0

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

publish-helm.sh

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
HPCC_DIR=$1
3+
[[ -z ${HPCC_DIR} ]] && HPCC_DIR=~/HPCC-Platform
4+
5+
set -e
6+
7+
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
8+
pushd $DIR/docs 2>&1 > /dev/null
9+
10+
helm package ${HPCC_DIR}/dockerfiles/hpcc/
11+
helm repo index . --url https://hpcc-systems.github.io/helm-chart

0 commit comments

Comments
 (0)