Skip to content
Advertisement

503 service unavailable- Is there any issue with my ingress.yaml file?

Please bear with me. I may sound silly. But, I am very new to K8s and don’t know much about writing its yaml files.

I have deployed one Spring Boot application as a pod to k8s cluster via its helm chart. When I access any URL of the application from pod’s terminal using curl, I get a success response. but, when I access it from my laptop or browser, I get 503 service unavailable error. I have no idea what is happening. My senior says its an ingress issue. But, the helm install ran perfectly and pod came up as well.

Below is my ingress.yaml file.

JavaScript

Below is the trace I get on my laptop’s cmd terminal when I run curl from there.

JavaScript

Advertisement

Answer

It was actually a configuration issue. I was actually running different pods and I had helm charts of all. To spin up all the pods, I had a helm of helms which included all the helms as subcharts. The ingress in the question is the one from the parent/main helm chart.

To run the parent helm, I had a shell script which would provide environment properties to the subcharts of the parent chart.

Now, I had two helm subcharts: i.e. old-service and new-service. My requirement was that I needed to spin up only one based on a flag value. The new service was an upgraded version of the old service, so to not update the UI endpoint for accessing the services, I tried keeping the backend for both subcharts as same (thinking that since only one pod would spin up -> I was keeping replicaCount as 0 for pod which was not starting from my shell script) as below:

JavaScript

But, it turns out. It cannot be done. It appears that kubernetes reads configuration rather than pod running or not.

To resolve it, I kept the above two backend for new-service and old-service different and provided dynamic endpoint environment property to UI subchart based on which service was going to be up on the basis of flag value.

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement