Skip to content

Commit 54d11bf

Browse files
fix(ci): skip CRD types in kubeconform validation
Skip ArgoCD, cert-manager, and sealed-secrets CRDs that don't have built-in schemas in kubeconform. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 37c3ccd commit 54d11bf

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/validate.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@ jobs:
2929
kubectl kustomize clusters/${{ matrix.env }}/ > rendered.yaml
3030
3131
- name: Kubeconform validation
32-
run: kubeconform -summary -strict rendered.yaml
32+
run: |
33+
kubeconform -summary -strict \
34+
-skip Application,ApplicationSet,Certificate,ClusterIssuer,SealedSecret \
35+
rendered.yaml
3336
3437
- name: OPA policy check
3538
run: |

0 commit comments

Comments
 (0)