Merge pull request #32 from paulcarlton-ww/debug

add dependencies opt-in input
This commit is contained in:
Stefan Prodan 2022-10-06 13:33:31 +02:00 committed by GitHub
commit b97c7e37c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 17 additions and 1 deletions

View file

@ -20,6 +20,7 @@ Inputs:
* `chart_version` Explicitly specify chart version in package. If not defined then used chart values. * `chart_version` Explicitly specify chart version in package. If not defined then used chart values.
* `index_dir` The location of `index.yaml` file in the repo, defaults to the same value as `target_dir` * `index_dir` The location of `index.yaml` file in the repo, defaults to the same value as `target_dir`
* `enterprise_url` The URL of enterprise github server in the format `<server-url>/<organisation>` * `enterprise_url` The URL of enterprise github server in the format `<server-url>/<organisation>`
* `dependencies` A list of helm repositories required to verify dependencies in the format `<name>,<url>;<name>,<url>`
## Examples ## Examples

View file

@ -52,6 +52,9 @@ inputs:
enterprise_url: enterprise_url:
description: "The URL of enterprise github server in the format '<server-url>/<organisation>'" description: "The URL of enterprise github server in the format '<server-url>/<organisation>'"
required: false required: false
dependencies:
description: "A list of helm repositories required to verify dependencies in the format '<name>,<url>;<name>,<url>'"
required: false
runs: runs:
using: 'docker' using: 'docker'
image: 'Dockerfile' image: 'Dockerfile'
@ -71,3 +74,4 @@ runs:
- ${{ inputs.chart_version }} - ${{ inputs.chart_version }}
- ${{ inputs.index_dir }} - ${{ inputs.index_dir }}
- ${{ inputs.enterprise_url }} - ${{ inputs.enterprise_url }}
- ${{ inputs.dependencies }}

View file

@ -32,6 +32,7 @@ APP_VERSION=${12}
CHART_VERSION=${13} CHART_VERSION=${13}
INDEX_DIR=${14} INDEX_DIR=${14}
ENTERPRISE_URL=${15} ENTERPRISE_URL=${15}
DEPENDENCIES=${16}
CHARTS=() CHARTS=()
CHARTS_TMP_DIR=$(mktemp -d) CHARTS_TMP_DIR=$(mktemp -d)
@ -93,6 +94,7 @@ main() {
locate locate
download download
get_dependencies
dependencies dependencies
if [[ "$LINTING" != "off" ]]; then if [[ "$LINTING" != "off" ]]; then
lint lint
@ -124,6 +126,15 @@ download() {
rm -rf $tmpDir rm -rf $tmpDir
} }
get_dependencies() {
IFS=';' read -ra dependency <<< "$DEPENDENCIES"
for repos in ${dependency[@]}; do
name=$(cut -f 1 -d, <<< "$repos")
url=$(cut -f 2 -d, <<< "$repos")
helm repo add ${name} ${url}
done
}
dependencies() { dependencies() {
for chart in ${CHARTS[@]}; do for chart in ${CHARTS[@]}; do
helm dependency update "${chart}" helm dependency update "${chart}"