Filter non-chart files and directories
Signed-off-by: Steven Sheehy <steven.sheehy@hedera.com>
This commit is contained in:
parent
c97dd4b612
commit
8551b0d273
2 changed files with 23 additions and 2 deletions
|
@ -11,6 +11,7 @@ REPOSITORY=$5
|
||||||
BRANCH=$6
|
BRANCH=$6
|
||||||
HELM_VERSION=$7
|
HELM_VERSION=$7
|
||||||
|
|
||||||
|
CHARTS=()
|
||||||
CHARTS_TMP_DIR=$(mktemp -d)
|
CHARTS_TMP_DIR=$(mktemp -d)
|
||||||
REPO_ROOT=$(git rev-parse --show-toplevel)
|
REPO_ROOT=$(git rev-parse --show-toplevel)
|
||||||
REPO_URL=""
|
REPO_URL=""
|
||||||
|
@ -44,12 +45,25 @@ main() {
|
||||||
REPO_URL="https://x-access-token:${GITHUB_TOKEN}@github.com/${OWNER}/${REPOSITORY}"
|
REPO_URL="https://x-access-token:${GITHUB_TOKEN}@github.com/${OWNER}/${REPOSITORY}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
locate
|
||||||
download
|
download
|
||||||
|
dependencies
|
||||||
lint
|
lint
|
||||||
package
|
package
|
||||||
upload
|
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() {
|
download() {
|
||||||
tmpDir=$(mktemp -d)
|
tmpDir=$(mktemp -d)
|
||||||
|
|
||||||
|
@ -62,12 +76,18 @@ download() {
|
||||||
rm -rf $tmpDir
|
rm -rf $tmpDir
|
||||||
}
|
}
|
||||||
|
|
||||||
|
dependencies() {
|
||||||
|
for chart in ${CHARTS[@]}; do
|
||||||
|
helm dependency update "${chart}"
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
lint() {
|
lint() {
|
||||||
helm lint ${REPO_ROOT}/${CHARTS_DIR}/*/
|
helm lint ${CHARTS[*]}
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
helm package -u ${REPO_ROOT}/${CHARTS_DIR}/*/ --destination ${CHARTS_TMP_DIR}
|
helm package ${CHARTS[*]} --destination ${CHARTS_TMP_DIR}
|
||||||
}
|
}
|
||||||
|
|
||||||
upload() {
|
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