- /scripts/version-number.sh - /scripts/helm-package.sh - /scripts/docker-build.sh - /templates/build-container.tpl.yml
9 lines
182 B
Bash
9 lines
182 B
Bash
#!/usr/bin/env bash
|
|
#%%MULTILINE_YAML_START
|
|
#Helm Package
|
|
|
|
for chart in charts/*; do
|
|
if [ -d "$chart" ]; then
|
|
helm package "$chart" -d ./packages --version ${VERSION}
|
|
fi
|
|
done |