Use caddy ingress class instead of nginx in cluster_info.py
Lint Checks / Run linter (push) Successful in 14s

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>
This commit is contained in:
A. F. Dudley
2026-01-22 03:41:35 -05:00
co-authored by Claude Opus 4.5
parent 638435873c
commit 8d9682eb47
@@ -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