fix(traefik): set controllerName on GatewayClasses and Traefik providers (#135)

## Problem

Both GatewayClasses (`traefik-internal`, `traefik-external`) were stuck as `Unknown`. Neither Traefik deployment had `controllerName` set in `kubernetesGateway`, so both defaulted to `traefik.io/gateway-controller` — which matched neither GatewayClass.

## Fix

- `gatewayclass-internal.yaml`: `controllerName: traefik.io/gateway-controller-internal`
- `gatewayclass-external.yaml`: `controllerName: traefik.io/gateway-controller-external`
- `values-internal.yaml`: added `controllerName: traefik.io/gateway-controller-internal`
- `values-external.yaml`: added `controllerName: traefik.io/gateway-controller-external`

## Test plan

- [ ] ArgoCD syncs traefik-system cleanly
- [ ] `kubectl get gatewayclass` shows both as `Accepted: True`

Reviewed-on: #135
This commit was merged in pull request #135.
This commit is contained in:
2026-05-22 23:44:06 +10:00
parent f53a2dc4f8
commit 2df359c4a9
4 changed files with 8 additions and 2 deletions
@@ -4,4 +4,4 @@ kind: GatewayClass
metadata:
name: traefik-external
spec:
controllerName: traefik.io/gateway-controller
controllerName: traefik.io/gateway-controller-external
@@ -4,4 +4,4 @@ kind: GatewayClass
metadata:
name: traefik-internal
spec:
controllerName: traefik.io/gateway-controller
controllerName: traefik.io/gateway-controller-internal