towerops/k8s/kustomization.yaml
Graham McIntire b47b00d9e0
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.
2026-02-14 11:05:20 -06:00

11 lines
387 B
YAML

apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: towerops
resources:
- namespace.yaml
- deployment.yaml
- service.yaml
- service-headless.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