We had a situation where we had to drain a Kubernetes node.
Is there anything I can do to enable pod scheduling back again? Please suggest.
You've most likely used the kubectl cordon <node name>
to set your node as un-scheduleable.
To revert this you can run kubectl uncordon <node name>
to make it schedulable again.
If this doesn't allow you to schedule on this node please provide the outputs of kubectl describe node <node name>
.
Good luck!