While deploying microservices on Kubernetes with minikube I faced the problem of Liveness probe failure. Based on this answer I changed the timeoutSeconds of liveness probe from 1 to 10, but the problem isn't fixed. Readiness probe failed: timeout: failed to connect service ":8080" within 1s
The error says,
Liveness probe failed: timeout: failed to connect service ":8080" within 1s
Back-off restarting failed container.
What else could i do to solve this?