From b47b00d9e0ddec80276146fd3bb597a5b3aafd48 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Sat, 14 Feb 2026 11:04:58 -0600 Subject: [PATCH] fix: exclude cert-manager and traefik resources from FluxCD kustomization These CRDs are not available for FluxCD dry-run validation, causing the kustomization to fail. Apply certificate.yaml and ingressroute.yaml manually instead. --- k8s/kustomization.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/k8s/kustomization.yaml b/k8s/kustomization.yaml index 1456b5b8..d4df0647 100644 --- a/k8s/kustomization.yaml +++ b/k8s/kustomization.yaml @@ -6,6 +6,6 @@ resources: - deployment.yaml - service.yaml - service-headless.yaml - - certificate.yaml - - ingressroute.yaml - poddisruptionbudget.yaml + # certificate.yaml and ingressroute.yaml excluded - require cert-manager and Traefik CRDs + # Apply those manually: kubectl apply -f k8s/certificate.yaml -f k8s/ingressroute.yaml