In a VKS environment discrepancy is seen between the Stateful Set controller and the actual Pod status.
kubectl get statefulset -n <namespace> displays the READY column as 0/0.k get statefulset -n <namespace>
NAME READY AGE<stateful set name> 0/0 ##d
kubectl get pods confirms that Pods belonging to the StatefulSet are in a Running status.vSphere Kuberenetes Service
This condition is typically caused by a synchronization failure between the Kubernetes Control Plane and the workload state
To resolve the inconsistency, the controller must be forced to re-evaluate the Pod objects using the steps below
kubectl delete pod <pod-name>
kubectl scale statefulset <name> --replicas=0