You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# kubectl get pvc -o wide -n test
NAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE VOLUMEMODE
ubuntu-tmpl Bound pvc-4c1174d0-acf4-49a6-b264-bbdd3ddf6209 4Gi RWX csi-neonsan 6d22h Block
I have managed to resize the volume in call CreateVolume when it's a block volume, but this still has issue when it's a filesystem volume: the filesystem can not be resized in call CreateVolume, it should be done by kubelet calling the NodeExpandVolume, which I can not do that in the CSI driver code.
And I also looked at other open source CSI drivers, they don't have a solution for such case either. For example, ceph. They will force user to specify an exact same size for the new PVC, otherwise an size mismatch error will be threw. After the clone volume done, user can expand the volume as usual. Maybe we should do that too, in that way we make sure the resize is on purpose and can be done successfully, for both block volume and filesystem volume.
This is a very general and popular problem, not only neonsan-csi, but also qingcloud-csi and many other csi drivers have this problem too. See the comments in kubernetes-csi/external-resizer#131, a discussion is ongoing about this with the K8S SIG-STORAGE team and CSI SPEC team. Currently there is no conclusion/decision and ETA.
I will NOT fix this issue or change any code util the above discussion has a closure. We will keep current behaviour.
Please check latest csi spec and the progress of kubernetes-csi/external-resizer#131. Regarding this issue, the decision is NOT allow cloning a volume to large size. User must start a new resize request after cloning done if expansion is needed.
source pvc's size is 4Gi:
clone pvc's size is 6Gi:
after clone, pvc info:
after clone, clone volume size is 4Gi not 6Gi:
After cloning is complete, the size of underlying storage volume should be consistent with the requested PVC.
The text was updated successfully, but these errors were encountered: