The probe is just a term for Kubernetes that checks and monitors the health and status of containers deployed on Kubernetes. It determines a continuous check on whether the application is running properly and traffic is ongoing.
๐ง๐๐ฝ๐ฒ๐ ๐ผ๐ณ ๐๐๐ฏ๐ฒ๐ฟ๐ป๐ฒ๐๐ฒ๐ ๐ฃ๐ฟ๐ผ๐ฏ๐ฒ๐
- ๐๐ถ๐๐ฒ๐ป๐ฒ๐๐ ๐ฃ๐ฟ๐ผ๐ฏ๐ฒ
Propose of the Liveness Probe is to determine if the pod is running. If it does not work properly Liveness Probe will create a new pod terminating the previous one. It will be continuous as I said before according to the given requirements
- ๐ฅ๐ฒ๐ฎ๐ฑ๐ถ๐ป๐ฒ๐๐ ๐ฃ๐ฟ๐ผ๐ฏ๐ฒ
It checks whether Pod is accepting traffic using the service created. The pod may have to catch, serving issues and cause container delays. It ensures working and if it is not woking it will terminate the end point connection with the service.
Am I right about it?
Just Be Sure
0 Comments