fix(traefik): remove invalid controllerName flag causing CrashLoopBackOff #136
Reference in New Issue
Block a user
Delete Branch "benvin/fix-traefik-crashing"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
URGENT — Traefik pods are CrashLoopBackOff
The merged PR #135 added
--providers.kubernetesgateway.controllerNameas anadditionalArgumentsentry. Traefik v3.7.0 does not support this flag and fails immediately on startup.Old replica sets are still running (one pod each) but new pods cannot come up.
Fix
additionalArgumentsfrom bothvalues-internal.yamlandvalues-external.yamlcontrollerNameback totraefik.io/gateway-controller(the hardcoded Traefik default — no override mechanism exists in v3.7.0)After merge
GatewayClasses will remain
Unknownuntil a separate solution for internal/external separation is implemented (thelabelSelectorapproach needs further investigation).