kubernetes-ingress icon indicating copy to clipboard operation
kubernetes-ingress copied to clipboard

`check-interval` only affects `default_local_backend`

Open jkbschmid opened this issue 3 years ago • 0 comments

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!

jkbschmid avatar Sep 16 '22 08:09 jkbschmid