Use caddy ingress class instead of nginx in cluster_info.py
Lint Checks / Run linter (push) Failing after 0s Details

The ingress annotation was still set to nginx class even though we're now
using Caddy as the ingress controller. Caddy won't pick up ingresses
annotated with the nginx class.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
helm-charts-with-caddy
A. F. Dudley 2026-01-22 03:41:35 -05:00
parent 638435873c
commit 8d9682eb47
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ class ClusterInfo:
spec = client.V1IngressSpec(tls=tls, rules=rules)
ingress_annotations = {
"kubernetes.io/ingress.class": "nginx",
"kubernetes.io/ingress.class": "caddy",
}
if not certificate:
ingress_annotations["cert-manager.io/cluster-issuer"] = cluster_issuer