mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
cephfs: allow readonly only for volume with contentsource
It doesnot make sense to allow the creation of empty volumes with readonly access, this commit allows the creation of volume which is having readonly capabilities only if the content source is set for the volume. Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
This commit is contained in:
parent
2deabcd284
commit
860b65c446
@ -73,6 +73,12 @@ func (cs *ControllerServer) validateCreateVolumeRequest(req *csi.CreateVolumeReq
|
||||
}
|
||||
}
|
||||
|
||||
// Allow readonly access mode for volume with content source
|
||||
err := util.CheckReadOnlyManyIsSupported(req)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if req.VolumeContentSource != nil {
|
||||
volumeSource := req.VolumeContentSource
|
||||
switch volumeSource.Type.(type) {
|
||||
|
Loading…
Reference in New Issue
Block a user