redirect stdout to dev null in order to not expose secrets

This commit is contained in:
Sebastian Wendel 2022-11-29 16:27:26 +01:00
parent 6270f7492b
commit 42567022f0
No known key found for this signature in database
GPG key ID: 1422B7DF78144640

View file

@ -14,9 +14,9 @@ lint.yaml:
lint.kustomize.dev:
stage: build
script:
- kubectl kustomize overlays/dev --enable-helm
- kubectl kustomize overlays/dev --enable-helm >/dev/null
lint.kustomize.prod:
stage: build
script:
- kubectl kustomize overlays/prod --enable-helm
- kubectl kustomize overlays/prod --enable-helm >/dev/null