Skip to main content

Hi,

 

I am doing IFS cloud upgrade from 23R1 to 24R1.

KUBERNETES and ingress pods are up but ifs storage pods is not coming up.

ifs-storage   csi-smb-node-fvzgf                                     1/3     CrashLoopBackOff   34 (3m14s ago)   72m
ifs-storage   csi-smb-controller-6c679d7fbf-4zj92                    1/3     CrashLoopBackOff   34 (3m13s ago)   72m

Hi Shashikant,

There is not enough information here to determine the cause. Please check the pod description and container logs for further details.

Describe commands:

kubectl describe deployment/csi-smb-controller -n ifs-storage
kubectl describe daemonset/csi-smb-node -n ifs-storage

Get the logs for each container. (Note: each pod contains three containers.):

kubectl logs deployment/csi-smb-controller -c csi-provisioner -n ifs-storage
kubectl logs deployment/csi-smb-controller -c smb -n ifs-storage
kubectl logs deployment/csi-smb-controller -c liveness-probe -n ifs-storage
kubectl logs daemonset/csi-smb-node -c smb -n ifs-storage
kubectl logs daemonset/csi-smb-node -c node-driver-registrar -n ifs-storage
kubectl logs daemonset/csi-smb-node -c liveness-probe -n ifs-storage

Depending on when the pods crash, you may also append -p to the above output to try to get the logs for the previously crashed pods.

Best regards -- Ben


Reply