Kubernetes - Health Checks and Probes
Consider this pod spec snippet:
What will Kubernetes do if the container does not accept TCP connections on port 3306 after startup?
readinessProbe:
tcpSocket:
port: 3306
initialDelaySeconds: 10
periodSeconds: 5What will Kubernetes do if the container does not accept TCP connections on port 3306 after startup?
