Merge pull request #121237 from arichtman/addon-manager-script-typo

fixed miscalled function in addon-manager `kube-addons.sh`
This commit is contained in:
Kubernetes Prow Robot 2023-10-16 03:08:46 +02:00 committed by GitHub
commit add482a2d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -133,7 +133,7 @@ if [ -n "${KUBECTL_EXTRA_PRUNE_WHITELIST:-}" ]; then
read -ra extra_prune_allowlist <<< "${KUBECTL_EXTRA_PRUNE_WHITELIST}"
fi
prune_allowlist=( "${KUBECTL_PRUNE_WHITELIST[@]}" "${extra_prune_allowlist[@]}" )
prune_allowlist_flags=$(generate_prune_allowallowlist_flags "${prune_allowlist[@]}")
prune_allowlist_flags=$(generate_prune_allowlist_flags "${prune_allowlist[@]}")
log INFO "== Generated kubectl prune allowlist flags: $prune_allowlist_flags =="