commit
a6d2694382
2 changed files with 23 additions and 2 deletions
|
@ -11,6 +11,7 @@ REPOSITORY=$5
|
|||
BRANCH=$6
|
||||
HELM_VERSION=$7
|
||||
|
||||
CHARTS=()
|
||||
CHARTS_TMP_DIR=$(mktemp -d)
|
||||
REPO_ROOT=$(git rev-parse --show-toplevel)
|
||||
REPO_URL=""
|
||||
|
@ -44,12 +45,25 @@ main() {
|
|||
REPO_URL="https://x-access-token:${GITHUB_TOKEN}@github.com/${OWNER}/${REPOSITORY}"
|
||||
fi
|
||||
|
||||
locate
|
||||
download
|
||||
dependencies
|
||||
lint
|
||||
package
|
||||
upload
|
||||
}
|
||||
|
||||
locate() {
|
||||
for dir in $(find "${CHARTS_DIR}" -type d -mindepth 1 -maxdepth 1); do
|
||||
if [[ -f "${dir}/Chart.yaml" ]]; then
|
||||
CHARTS+=("${dir}")
|
||||
echo "Found chart directory ${dir}"
|
||||
else
|
||||
echo "Ignoring non-chart directory ${dir}"
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
download() {
|
||||
tmpDir=$(mktemp -d)
|
||||
|
||||
|
@ -62,12 +76,18 @@ download() {
|
|||
rm -rf $tmpDir
|
||||
}
|
||||
|
||||
dependencies() {
|
||||
for chart in ${CHARTS[@]}; do
|
||||
helm dependency update "${chart}"
|
||||
done
|
||||
}
|
||||
|
||||
lint() {
|
||||
helm lint ${REPO_ROOT}/${CHARTS_DIR}/*/
|
||||
helm lint ${CHARTS[*]}
|
||||
}
|
||||
|
||||
package() {
|
||||
helm package -u ${REPO_ROOT}/${CHARTS_DIR}/*/ --destination ${CHARTS_TMP_DIR}
|
||||
helm package ${CHARTS[*]} --destination ${CHARTS_TMP_DIR}
|
||||
}
|
||||
|
||||
upload() {
|
||||
|
|
1
testdata/notchart/README.md
vendored
Normal file
1
testdata/notchart/README.md
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
This folder is not a chart and should be skipped
|
Loading…
Add table
Reference in a new issue