So, I recently started a new spring boot application and I setup the security config and added one endpoint. I tested that I'm able to hit the endpoint I added and the actuator endpoint locally. However, when deployed on Kubernetes, my app pod is constantly restarting with connection refused for /actuator/info.
When I try to hit the endpoint directly (deployed one), I get this strange error:
{ "error": "no handler found for uri [/actuator/info] and method [GET]" }
Does anyoen know why that message appears and what additional config I'm missing?