From 7f3f5e241bd15403fe3032117cea67f68fb3168c Mon Sep 17 00:00:00 2001 From: Kesara Rathnayake Date: Tue, 21 Jan 2025 18:02:52 +1300 Subject: [PATCH] ci: Remove kustomize check (#565) --- .github/workflows/kustomize-checks.yml | 27 -------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/kustomize-checks.yml diff --git a/.github/workflows/kustomize-checks.yml b/.github/workflows/kustomize-checks.yml deleted file mode 100644 index 8a2cb06..0000000 --- a/.github/workflows/kustomize-checks.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Kustomize Config Check - -on: - push: - branches: [ main ] - paths: - - 'k8s/**' - pull_request: - branches: [ main ] - paths: - - 'k8s/**' - -jobs: - kustomize-config-check: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Set up kubectl - uses: azure/setup-kubectl@v4 - - - name: Test with dry run - run: | - kubectl kustomize ./k8s - kubectl apply --dry-run=client --kustomize ./k8s