Merge pull request #35 from zzorica/allow-private-helm-repo-auth-in-dependencies
Allow private helm repo auth in dependencies
This commit is contained in:
commit
0ad2bb3773
3 changed files with 17 additions and 8 deletions
|
@ -20,7 +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>`
|
* `dependencies` A list of helm repositories required to verify dependencies in the format `<name>,<url>;<name>,<url>` or if using private repositories `<name>,<username>,<password>,<url>;<name>,<username>,<password>,<url>`. Combinations are allowed.
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
|
|
|
@ -129,9 +129,18 @@ download() {
|
||||||
get_dependencies() {
|
get_dependencies() {
|
||||||
IFS=';' read -ra dependency <<< "$DEPENDENCIES"
|
IFS=';' read -ra dependency <<< "$DEPENDENCIES"
|
||||||
for repos in ${dependency[@]}; do
|
for repos in ${dependency[@]}; do
|
||||||
|
result=$( echo $repos|awk -F',' '{print NF}' )
|
||||||
|
if [[ $result -gt 2 ]]; then
|
||||||
|
name=$(cut -f 1 -d, <<< "$repos")
|
||||||
|
username=$(cut -f 2 -d, <<< "$repos")
|
||||||
|
password=$(cut -f 3 -d, <<< "$repos")
|
||||||
|
url=$(cut -f 4 -d, <<< "$repos")
|
||||||
|
helm repo add ${name} --username ${username} --password ${password} ${url}
|
||||||
|
else
|
||||||
name=$(cut -f 1 -d, <<< "$repos")
|
name=$(cut -f 1 -d, <<< "$repos")
|
||||||
url=$(cut -f 2 -d, <<< "$repos")
|
url=$(cut -f 2 -d, <<< "$repos")
|
||||||
helm repo add ${name} ${url}
|
helm repo add ${name} ${url}
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue