Label Nodes For Storage Classes
Each node serving persistent storage should have nexqloud.network/storageclasses label set.
NOTE - currently the Helm Charts for persistent storage support only a single storageclass per cluster. All nodes in the cluster should be marked as
beta2- as an example - and cannot have a mix ofbeta2andbeta3nodes.
Ensure that this command is issued - one at a time - for all nodes serving persistent storage
Replace the
storageclassesvalue with the proper storage class and as clarified in the example command
List Kubernetes Node Names
Use this command to capture the node names for the subsequent step
kubectl get nodesApply Node Labels
NOTE - ensure ALL nodes in the Kubernetes cluster receive this label
kubectl label node <node-name> nexqloud.network/storageclasses=<beta1|beta2|beta3> --overwriteExample Label Command
In our example with a single node serving persistent storage with the storage class of beta2, the following label syntax would be applied.
kubectl label node node2 nexqloud.network/storageclasses=beta2 --overwrite
Last updated