I have a microservice architecture, build on Spring Cloud Netflix:
- business-owner-service points to a Spring Boot app that runs on port 8763. Port forwarding is done, business-owner-service:80 redirects to port 8763.

- customer-service points to a Spring Boot app that runs on port 8766. customer-service:80 -> 8766
The architecture runs correctly if I invoke it via the Spring Cloud Zuul gateway but I wish to set up an Ingress.
My exact configuration is the following:
The problem is that the ingress has all backend services on unhealthy and I don't know what I'm doing wrong. What do I must do in order to have a working Ingress?
Edit: Per comments, I tried to define readinessProbe, for customer-service pod, as follows:

This doesn't work, and when I try to double check updated configuration, readinessProbe is not visible. I think this is a bug, but I am not sure how to check that the probe is updated or not.


