-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can not use PVC for multi Pods #749
Comments
RWX is not supported. I think we have a bug somewhere in the CSI driver, because it simply should not allow you to create such volumes in the first place. |
thanks, @WanzenBug. |
Yes. Because RWO means only one node can use the volume at a time. On that node, there can be many Pods using the same volume. But if there is no scheduling constraint with some inter-pod affinity, the two Pods may be moved to different Nodes, and then you get this error. In general, having two Pods access the same volume is almost always a bad idea. It's a poor API, and it is slow, too. |
@WanzenBug, that mean Linstor does not support to share pvc to multi nodes, right? |
Yes, that is right. |
@WanzenBug, thank for your advise |
I want to deploy an application with 2 pods on 1 pvc but it's not working.
Please help to advise.
Thanks.
The text was updated successfully, but these errors were encountered: