you are right there is a delay between when the pod is ready and when the tomcat starts running for my application to come up, I'm experiencing with readinessprobe right now, but when I update it, my first deployment doesn't happen and my first pod keep restarting the server or won't start when i try this
livenessProbe:
# an http probe
httpGet:
path: /healthz
port: 8080
initialDelaySeconds: 15
timeoutSeconds: 1readinessProbe:
# an http probe
httpGet:
path: /readiness
port: 8080
initialDelaySeconds: 20
timeoutSeconds: 5Can you provide me with any other tutorial I can follow, please.