What happens to pods in a node when you delete the node?

Sakthi Kishore:
what happens to pods in a node when you delete the node?

Mudit:
If the pods are deployed using ReplicaSet, the pods will come up automatically on some other nodes in the same K8s cluster (provided the cluster contains more than 1 schedulable node).
However, if the pod is a standalone pod and not part of ReplicaSet/deployment, it will be deleted along the VM/node deletion.