Troubleshooting
# get all resources
kubectl get all --all-namespaces
# get all pods
kubectl get pods --all-namespaces -o wide
# get all k8s nodes
kubectl get nodes
# get storage classes
$ kubectl get sc
# get persistent volume claims
$ kubectl get pvc
# get persistent volumes
$ kubectl get pv
# kubectl describe pod/<pod-name> -n <namespace>
kubectl describe pod/csi-wekafsplugin-dvdh2 -n csi-wekafsplugin
# get logs from a pod
kubectl logs <pod name> <container name>
# get logs from the weka csi plugin
# container (-c) can be one of: [node-driver-registrar wekafs liveness-probe csi-provisioner csi-attacher csi-resizer]
kubectl logs pods/csi-wekafsplugin-<ID> --namespace csi-wekafsplugin -c wekafsKnown issues
Mixed hugepages size issue in Kubernetes v1.18 and below
Workaround
PreviousUpgrade legacy persistent volumes for capacity enforcementNextConvert cluster to multi-container backend
Last updated