1 changed file
kubernetes | ||
pluto_detect_kustomize_materialize.sh | ||
pluto_detect_kustomize_materialize.sh
/kubernetes/pluto_detect_kustomize_materialize.sh-2+2/kubernetes/pluto_detect_kustomize_materialize.sh
Add comment 32
Add comment 33 Parallelized for performance, with Helm support enabled.
Add comment 34
Add comment 35 Minus Requires 'kustomize' and 'pluto' binaries to be in the \$PATH
Add comment 35 Plus Requires 'kustomize' and 'pluto' binaries to be in the \$PATH - will attempt to install them if not found
Add comment 36 "
Add comment 37
Add comment 38 # used by usage() in lib/utils.sh
Add comment 47 dir="${1:-.}"
Add comment 48
Add comment 49 for x in kustomize pluto; do
Add comment 50 Minus if ! type -P &>/dev/null; then
Add comment 50 Plus if ! type -P "$x" &>/dev/null; then
Add comment 51 "$srcdir/../install_$x.sh"
Add comment 52 fi
Add comment 53 done