we see the below logs very frequently
/csi.v1.Node/NodeGetVolumeStats called with request: volume_id:"projects/UNSPECIFIED/zones/
project name: UNSPECIFIED
gke version: 1.28.11-gke.1019001
why could project name be UNSPECIFIED ?
we see the below logs very frequently
/csi.v1.Node/NodeGetVolumeStats called with request: volume_id:"projects/UNSPECIFIED/zones/
project name: UNSPECIFIED
gke version: 1.28.11-gke.1019001
why could project name be UNSPECIFIED ?
Hello @Moetazbellah ,
Welcome to Google Cloud Community!
The /csi.v1.Node/ part indicates that the log entry relates to a CSI driver operating within the Kubernetes node environment. While NodeGetVolumeStats part is the name of a specific function or method within the CSI Node service. It allows the Kubernetes cluster to gather key performance metrics about a specific volume attached to a node.
The issue you’re seeing where the project name is appearing as "UNSPECIFIED" in your logs can be attributed to a few possible causes :
Here are some basic recommendations for Troubleshooting :
kubectl describe pv and kubectl describe pvc to confirm the project is properly associated with the volume. You can also check if your PV and PVC has a correct volume path or if it mounted properly.kubectl get pods -o wide and kubectl describe pod to identify potential network-related issues affecting the CSI plugin.I hope the above information is helpful.