mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-13 10:33:35 +00:00
e2e: cephfs rados namespace test
Signed-off-by: Praveen M <m.praveen@ibm.com>
This commit is contained in:
@ -187,6 +187,15 @@ func deleteBackingCephFSVolume(f *framework.Framework, pvc *v1.PersistentVolumeC
|
||||
return nil
|
||||
}
|
||||
|
||||
func cephfsOptions(pool string) string {
|
||||
if radosNamespace != "" {
|
||||
return "--pool=" + pool + " --namespace=" + radosNamespace
|
||||
}
|
||||
|
||||
// default namespace is csi
|
||||
return "--pool=" + pool + " --namespace=csi"
|
||||
}
|
||||
|
||||
type cephfsSubVolume struct {
|
||||
Name string `json:"name"`
|
||||
}
|
||||
|
Reference in New Issue
Block a user