Skip to content

Commit

Permalink
[CI] Add kubectl kustomize run to check our manifests definition
Browse files Browse the repository at this point in the history
  • Loading branch information
jstourac committed May 29, 2024
1 parent 98a9225 commit 2707b8b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/code-quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,14 @@ jobs:
echo "Starting Hadolint"
find . -name "Dockerfile" | xargs ./hadolint --config ./ci/hadolint-config.yaml
echo "Hadolint done"
# This simply checks that the manifests and respective kustomization.yaml finishes without an error.
- name: Check kustomize manifest
id: kustomize-manifests
run: |
set -x
kubectl version
echo "Starting 'kubectl kustomize manifests/base'"
kubectl kustomize manifests/base
echo "Starting 'kubectl kustomize manifests/overlays/additional'"
kubectl kustomize manifests/overlays/additional

0 comments on commit 2707b8b

Please sign in to comment.