Documentation
¶
Index ¶
- Constants
- func GetParameters() map[string]string
- type DynamicPVTestDriver
- type PVTestDriver
- type PreProvisionedVolumeTestDriver
- type SMBDriver
- func (d *SMBDriver) GetDynamicProvisionStorageClass(parameters map[string]string, mountOptions []string, ...) *storagev1.StorageClass
- func (d *SMBDriver) GetPersistentVolume(volumeID string, fsType string, size string, ...) *v1.PersistentVolume
- func (d *SMBDriver) GetPreProvisionStorageClass(parameters map[string]string, mountOptions []string, ...) *storagev1.StorageClass
Constants ¶
View Source
const SMBDriverNameVar = "SMB_CSI_DRIVER"
SMBDriverNameVar is the environment variable use to switch the driver to be used.
Variables ¶
This section is empty.
Functions ¶
func GetParameters ¶
Types ¶
type DynamicPVTestDriver ¶
type DynamicPVTestDriver interface { // GetDynamicProvisionStorageClass returns a StorageClass dynamic provision Persistent Volume GetDynamicProvisionStorageClass(parameters map[string]string, mountOptions []string, reclaimPolicy *v1.PersistentVolumeReclaimPolicy, bindingMode *storagev1.VolumeBindingMode, allowedTopologyValues []string, namespace string) *storagev1.StorageClass }
DynamicPVTestDriver represents an interface for a CSI driver that supports DynamicPV
type PVTestDriver ¶
type PVTestDriver interface { DynamicPVTestDriver PreProvisionedVolumeTestDriver }
func InitSMBDriver ¶
func InitSMBDriver() PVTestDriver
InitSMBDriver returns SMBDriver that implements DynamicPVTestDriver interface
type PreProvisionedVolumeTestDriver ¶
type PreProvisionedVolumeTestDriver interface { // GetPersistentVolume returns a PersistentVolume with pre-provisioned volumeHandle GetPersistentVolume(volumeID string, fsType string, size string, reclaimPolicy *v1.PersistentVolumeReclaimPolicy, namespace string, attrib map[string]string, nodeStageSecretRef string) *v1.PersistentVolume // GetPreProvisionStorageClass returns a StorageClass with existing file share GetPreProvisionStorageClass(parameters map[string]string, mountOptions []string, reclaimPolicy *v1.PersistentVolumeReclaimPolicy, bindingMode *storagev1.VolumeBindingMode, allowedTopologyValues []string, namespace string) *storagev1.StorageClass }
PreProvisionedVolumeTestDriver represents an interface for a CSI driver that supports pre-provisioned volume
type SMBDriver ¶
type SMBDriver struct {
// contains filtered or unexported fields
}
Implement DynamicPVTestDriver interface
func (*SMBDriver) GetDynamicProvisionStorageClass ¶
func (d *SMBDriver) GetDynamicProvisionStorageClass(parameters map[string]string, mountOptions []string, reclaimPolicy *v1.PersistentVolumeReclaimPolicy, bindingMode *storagev1.VolumeBindingMode, _ []string, namespace string) *storagev1.StorageClass
func (*SMBDriver) GetPersistentVolume ¶
func (*SMBDriver) GetPreProvisionStorageClass ¶
func (d *SMBDriver) GetPreProvisionStorageClass(parameters map[string]string, mountOptions []string, reclaimPolicy *v1.PersistentVolumeReclaimPolicy, bindingMode *storagev1.VolumeBindingMode, _ []string, namespace string) *storagev1.StorageClass
Click to show internal directories.
Click to hide internal directories.