Main issue: We are using the "Nginx ingress controller" for balance traffic to "unicorn" workers. For checking application healthy, K8s send every 30s request to "http://myHost/health/check.json" and use one unicorn worker for that. While the workers are busy, for example, 3 busy from 3 available k8s think that the pod is unhealthy and restart the pod.
Following issue: While we are using Nginx retries, the Nginx ingress controller is getting a high load of traffic and response 502 errors of request that tries to get a response. The life of request is the timeout we set.
Notes:
Our questions is: