Home > Net >  Run the kubernetes pod from the point of failure without restarting
Run the kubernetes pod from the point of failure without restarting

Time:07-12

I have deployed an application in Kubernetes that prints numbers from 1-20 in Kubernetes.

While printing numbers suddenly there is an internet failure and the pod crases after printing numbers from 1-10. Now the basic pod lifecycle says that the pod will restart and numbers will print again starting from 1 but I want to print the numbers from where it failed ie 10...

So basically I am searching for a way through which I can resume the application running in pods from the point of failure without restarting again.

Is there a way to do it ?? I have read about persistent storage and volumes but they are basically used to assign volumes to pods so that they can retain data and files .....

Please help me how can I achieve this and demonstrate this in form of POC ...

CodePudding user response:

can a statefulset be of use here? https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/

Using StatefulSets

StatefulSets are valuable for applications that require one or more of the following.

Stable, unique network identifiers.

Stable, persistent storage.

Ordered, graceful deployment and scaling.

Ordered, automated rolling updates.

In the above, stable is synonymous with persistence across Pod (re)scheduling. If an application doesn't require any stable identifiers or ordered deployment, deletion, or scaling, you should deploy your application using a workload object that provides a set of stateless replicas. Deployment or ReplicaSet may be better suited to your stateless needs.

  • Related