package azuredd
import "k8s.io/kubernetes/pkg/volume/azuredd"
Index ¶
Functions ¶
func ProbeVolumePlugins ¶
func ProbeVolumePlugins() []volume.VolumePlugin
ProbeVolumePlugins is the primary entrypoint for volume plugins.
Types ¶
type DiskController ¶
type DiskController interface { CreateBlobDisk(dataDiskName string, storageAccountType storage.SkuName, sizeGB int) (string, error) DeleteBlobDisk(diskURI string) error CreateManagedDisk(options *azure.ManagedDiskOptions) (string, error) DeleteManagedDisk(diskURI string) error // Attaches the disk to the host machine. AttachDisk(isManagedDisk bool, diskName, diskURI string, nodeName types.NodeName, cachingMode compute.CachingTypes) (int32, error) // Detaches the disk, identified by disk name or uri, from the host machine. DetachDisk(diskName, diskURI string, nodeName types.NodeName) error // Check if a list of volumes are attached to the node with the specified NodeName DisksAreAttached(diskNames []string, nodeName types.NodeName) (map[string]bool, error) // Get the LUN number of the disk that is attached to the host GetDiskLun(diskName, diskURI string, nodeName types.NodeName) (int32, error) // Get the next available LUN number to attach a new VHD GetNextDiskLun(nodeName types.NodeName) (int32, error) // Create a VHD blob CreateVolume(name, storageAccount, storageAccountType, location string, requestGB int) (string, string, int, error) // Delete a VHD blob DeleteVolume(diskURI string) error // Expand the disk to new size ResizeDisk(diskURI string, oldSize resource.Quantity, newSize resource.Quantity) (resource.Quantity, error) // GetAzureDiskLabels gets availability zone labels for Azuredisk. GetAzureDiskLabels(diskURI string) (map[string]string, error) // GetActiveZones returns all the zones in which k8s nodes are currently running. GetActiveZones() (sets.String, error) // GetLocation returns the location in which k8s cluster is currently running. GetLocation() string }
DiskController interface exposed by the cloud provider implementing Disk functionality
Source Files ¶
attacher.go azure_common.go azure_common_linux.go azure_dd.go azure_dd_block.go azure_dd_max_disk_count.go azure_mounter.go azure_provision.go doc.go
- Version
- v1.20.4
- Published
- Feb 18, 2021
- Platform
- linux/amd64
- Imports
- 30 packages
- Last checked
- 3 seconds ago –
Tools for package owners.