Merge pull request #113826 from jsafrane/add-openstack

Add CSI migration of OpenStack Cinder volumes
This commit is contained in:
Kubernetes Prow Robot
2022-11-11 11:00:07 -08:00
committed by GitHub
33 changed files with 634 additions and 13 deletions

View File

@@ -4097,6 +4097,20 @@ func TestValidateVolumes(t *testing.T) {
field: "rbd.image",
}},
},
// Cinder
{
name: "valid Cinder",
vol: core.Volume{
Name: "cinder",
VolumeSource: core.VolumeSource{
Cinder: &core.CinderVolumeSource{
VolumeID: "29ea5088-4f60-4757-962e-dba678767887",
FSType: "ext4",
ReadOnly: false,
},
},
},
},
// CephFS
{
name: "valid CephFS",