We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a103ae commit ce995b5Copy full SHA for ce995b5
.gitignore
@@ -1,7 +1,6 @@
1
General files for the project
2
pkg/*
3
*.pyc
4
-bin/*
5
.project
6
/.bin
7
/_test/secrets/*.json
bin/package
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+set -e
+chart=$1
+version=$(grep version "$chart/Chart.yaml" | awk '{ print $2 }')
8
+echo "packaging $chart:$version"
9
10
+helm package -d docs/ $chart
11
12
+helm repo index docs
13
14
+git add "docs/$chart-$version.tgz"
15
+git add docs/index.yaml
16
17
+git tag "$chart-v$version"
18
0 commit comments