This commit is contained in:
Lucas Gravley 2020-10-13 13:46:46 -05:00
parent c3a1403fa0
commit 7a775854e7

View file

@ -654,7 +654,7 @@ DetectKubernetesFile() {
FILE="${1}" # File that we need to validate
debug "Checking if ${FILE} is a Kubernetes descriptor..."
if grep -v 'kustomize.config.k8s.io' "${FILE}" | grep -v tekton "${FILE}" | grep -q -E '(apiVersion):'; then
if grep -v 'kustomize.config.k8s.io' "${FILE}" | grep -v tekton | grep -q -E '(apiVersion):'; then
debug "${FILE} is a Kubernetes descriptor"
return 0
fi