Accessing the deployed service using Helm chart in Kubernetes cluster
try the following command docker ps -a
and find the container associated with the pod. The container name should be pretty much same as the pod name with some prefix/suffix.
then look at the logs using docker logs <container_id>
. Maybe that will give you clues to what it is restarting
Try this for healthcheck probes:
livenessProbe:
tcpSocket:
port: 8085
readinessProbe:
tcpSocket:
port: 8085