Avoid Pod problems by unavailable CIFS Share #845
-
We mount multiple cifs volumes by the csi-driver-smb driver into one pod. If one CIFS share goes down (and the others are still up and running), the pod goes down. Is there a way to come around this? We would like to have our pod up and running, even if one share is not available for some time. |
Beta Was this translation helpful? Give feedback.
Answered by
andyzhangx
Sep 14, 2024
Replies: 1 comment 5 replies
-
that depends on your application logic, you need to change your application code to make sure your application could still live if one volume path is unavailable |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
the pod goes down because your application continuously writes data to the volume, and if there is write error, your application would crash, so if your pod could just raise error instead of crash in that case, that should help.