kubernetes-ingress
kubernetes-ingress copied to clipboard
`check-interval` only affects `default_local_backend`
Hey there 👋
I'm running into an issue where I specify check-interval: 5s in the ConfigMap provided via --configmap.
The ingress controller correctly parses the setting, but the 5 seconds only make it to the default_local_backend and not the backends that are generated for target services.
backend default_local_backend
default-server check inter 5000
...
backend my-ns_my-svc_http
mode tcp
default-server check # this is where I'd expect "inter 5000" as well
Is this intentional or should I use a different configuration?
Thank you for your help!