Fix problem with CSIMigration on Kubernetes cluster

If you are running a Kubernetes cluster with nodes with different versions you might notice that your newer nodes are not coming up because of a CSIMigration issue.

Open up the config.yaml for the kubelet (e.g. /var/lib/kubelet/config.yaml) and add the following to the end.


featureGates:
  CSIMigration: false
        

Restart the node (or just the kubelet) and voila your node now is working properly!

Posted January 8th, 2020

Up