123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362 |
- /*
- Copyright 2017 The Kubernetes Authors.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- package azure_dd
- import (
- "errors"
- "fmt"
- "strconv"
- "strings"
- "github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2018-07-01/storage"
- v1 "k8s.io/api/core/v1"
- "k8s.io/apimachinery/pkg/api/resource"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/util/sets"
- utilfeature "k8s.io/apiserver/pkg/util/feature"
- volumehelpers "k8s.io/cloud-provider/volume/helpers"
- "k8s.io/kubernetes/pkg/features"
- "k8s.io/kubernetes/pkg/volume"
- "k8s.io/kubernetes/pkg/volume/util"
- "k8s.io/legacy-cloud-providers/azure"
- )
- type azureDiskProvisioner struct {
- plugin *azureDataDiskPlugin
- options volume.VolumeOptions
- }
- type azureDiskDeleter struct {
- *dataDisk
- spec *volume.Spec
- plugin *azureDataDiskPlugin
- }
- var _ volume.Provisioner = &azureDiskProvisioner{}
- var _ volume.Deleter = &azureDiskDeleter{}
- func (d *azureDiskDeleter) GetPath() string {
- return getPath(d.podUID, d.dataDisk.diskName, d.plugin.host)
- }
- func (d *azureDiskDeleter) Delete() error {
- volumeSource, _, err := getVolumeSource(d.spec)
- if err != nil {
- return err
- }
- diskController, err := getDiskController(d.plugin.host)
- if err != nil {
- return err
- }
- managed := (*volumeSource.Kind == v1.AzureManagedDisk)
- if managed {
- return diskController.DeleteManagedDisk(volumeSource.DataDiskURI)
- }
- return diskController.DeleteBlobDisk(volumeSource.DataDiskURI)
- }
- // parseZoned parsed 'zoned' for storage class. If zoned is not specified (empty string),
- // then it defaults to true for managed disks.
- func parseZoned(zonedString string, kind v1.AzureDataDiskKind) (bool, error) {
- if zonedString == "" {
- return kind == v1.AzureManagedDisk, nil
- }
- zoned, err := strconv.ParseBool(zonedString)
- if err != nil {
- return false, fmt.Errorf("failed to parse 'zoned': %v", err)
- }
- if zoned && kind != v1.AzureManagedDisk {
- return false, fmt.Errorf("zoned is only supported by managed disks")
- }
- return zoned, nil
- }
- func (p *azureDiskProvisioner) Provision(selectedNode *v1.Node, allowedTopologies []v1.TopologySelectorTerm) (*v1.PersistentVolume, error) {
- if !util.AccessModesContainedInAll(p.plugin.GetAccessModes(), p.options.PVC.Spec.AccessModes) {
- return nil, fmt.Errorf("invalid AccessModes %v: only AccessModes %v are supported", p.options.PVC.Spec.AccessModes, p.plugin.GetAccessModes())
- }
- supportedModes := p.plugin.GetAccessModes()
- // perform static validation first
- if p.options.PVC.Spec.Selector != nil {
- return nil, fmt.Errorf("azureDisk - claim.Spec.Selector is not supported for dynamic provisioning on Azure disk")
- }
- if len(p.options.PVC.Spec.AccessModes) > 1 {
- return nil, fmt.Errorf("AzureDisk - multiple access modes are not supported on AzureDisk plugin")
- }
- if len(p.options.PVC.Spec.AccessModes) == 1 {
- if p.options.PVC.Spec.AccessModes[0] != supportedModes[0] {
- return nil, fmt.Errorf("AzureDisk - mode %s is not supported by AzureDisk plugin (supported mode is %s)", p.options.PVC.Spec.AccessModes[0], supportedModes)
- }
- }
- var (
- location, account string
- storageAccountType, fsType string
- cachingMode v1.AzureDataDiskCachingMode
- strKind string
- err error
- resourceGroup string
- zoned bool
- zonePresent bool
- zonesPresent bool
- strZoned string
- availabilityZone string
- availabilityZones sets.String
- selectedAvailabilityZone string
- diskIopsReadWrite string
- diskMbpsReadWrite string
- )
- // maxLength = 79 - (4 for ".vhd") = 75
- name := util.GenerateVolumeName(p.options.ClusterName, p.options.PVName, 75)
- capacity := p.options.PVC.Spec.Resources.Requests[v1.ResourceName(v1.ResourceStorage)]
- requestGiB, err := volumehelpers.RoundUpToGiBInt(capacity)
- if err != nil {
- return nil, err
- }
- for k, v := range p.options.Parameters {
- switch strings.ToLower(k) {
- case "skuname":
- storageAccountType = v
- case "location":
- location = v
- case "storageaccount":
- account = v
- case "storageaccounttype":
- storageAccountType = v
- case "kind":
- strKind = v
- case "cachingmode":
- cachingMode = v1.AzureDataDiskCachingMode(v)
- case volume.VolumeParameterFSType:
- fsType = strings.ToLower(v)
- case "resourcegroup":
- resourceGroup = v
- case "zone":
- zonePresent = true
- availabilityZone = v
- case "zones":
- zonesPresent = true
- availabilityZones, err = volumehelpers.ZonesToSet(v)
- if err != nil {
- return nil, fmt.Errorf("error parsing zones %s, must be strings separated by commas: %v", v, err)
- }
- case "zoned":
- strZoned = v
- case "diskiopsreadwrite":
- diskIopsReadWrite = v
- case "diskmbpsreadwrite":
- diskMbpsReadWrite = v
- default:
- return nil, fmt.Errorf("AzureDisk - invalid option %s in storage class", k)
- }
- }
- // normalize values
- skuName, err := normalizeStorageAccountType(storageAccountType)
- if err != nil {
- return nil, err
- }
- kind, err := normalizeKind(strFirstLetterToUpper(strKind))
- if err != nil {
- return nil, err
- }
- zoned, err = parseZoned(strZoned, kind)
- if err != nil {
- return nil, err
- }
- if kind != v1.AzureManagedDisk {
- if resourceGroup != "" {
- return nil, errors.New("StorageClass option 'resourceGroup' can be used only for managed disks")
- }
- if zoned {
- return nil, errors.New("StorageClass option 'zoned' parameter is only supported for managed disks")
- }
- }
- if !zoned && (zonePresent || zonesPresent || len(allowedTopologies) > 0) {
- return nil, fmt.Errorf("zone, zones and allowedTopologies StorageClass parameters must be used together with zoned parameter")
- }
- if cachingMode, err = normalizeCachingMode(cachingMode); err != nil {
- return nil, err
- }
- diskController, err := getDiskController(p.plugin.host)
- if err != nil {
- return nil, err
- }
- // Select zone for managed disks based on zone, zones and allowedTopologies.
- if zoned {
- activeZones, err := diskController.GetActiveZones()
- if err != nil {
- return nil, fmt.Errorf("error querying active zones: %v", err)
- }
- if availabilityZone != "" || availabilityZones.Len() != 0 || activeZones.Len() != 0 || len(allowedTopologies) != 0 {
- selectedAvailabilityZone, err = volumehelpers.SelectZoneForVolume(zonePresent, zonesPresent, availabilityZone, availabilityZones, activeZones, selectedNode, allowedTopologies, p.options.PVC.Name)
- if err != nil {
- return nil, err
- }
- }
- }
- // create disk
- diskURI := ""
- labels := map[string]string{}
- if kind == v1.AzureManagedDisk {
- tags := make(map[string]string)
- if p.options.CloudTags != nil {
- tags = *(p.options.CloudTags)
- }
- volumeOptions := &azure.ManagedDiskOptions{
- DiskName: name,
- StorageAccountType: skuName,
- ResourceGroup: resourceGroup,
- PVCName: p.options.PVC.Name,
- SizeGB: requestGiB,
- Tags: tags,
- AvailabilityZone: selectedAvailabilityZone,
- DiskIOPSReadWrite: diskIopsReadWrite,
- DiskMBpsReadWrite: diskMbpsReadWrite,
- }
- diskURI, err = diskController.CreateManagedDisk(volumeOptions)
- if err != nil {
- return nil, err
- }
- labels, err = diskController.GetAzureDiskLabels(diskURI)
- if err != nil {
- return nil, err
- }
- } else {
- if kind == v1.AzureDedicatedBlobDisk {
- _, diskURI, _, err = diskController.CreateVolume(name, account, storageAccountType, location, requestGiB)
- if err != nil {
- return nil, err
- }
- } else {
- diskURI, err = diskController.CreateBlobDisk(name, storage.SkuName(storageAccountType), requestGiB)
- if err != nil {
- return nil, err
- }
- }
- }
- var volumeMode *v1.PersistentVolumeMode
- if utilfeature.DefaultFeatureGate.Enabled(features.BlockVolume) {
- volumeMode = p.options.PVC.Spec.VolumeMode
- if volumeMode != nil && *volumeMode == v1.PersistentVolumeBlock {
- // Block volumes should not have any FSType
- fsType = ""
- }
- }
- pv := &v1.PersistentVolume{
- ObjectMeta: metav1.ObjectMeta{
- Name: p.options.PVName,
- Labels: labels,
- Annotations: map[string]string{
- "volumehelper.VolumeDynamicallyCreatedByKey": "azure-disk-dynamic-provisioner",
- },
- },
- Spec: v1.PersistentVolumeSpec{
- PersistentVolumeReclaimPolicy: p.options.PersistentVolumeReclaimPolicy,
- AccessModes: supportedModes,
- Capacity: v1.ResourceList{
- v1.ResourceName(v1.ResourceStorage): resource.MustParse(fmt.Sprintf("%dGi", requestGiB)),
- },
- VolumeMode: volumeMode,
- PersistentVolumeSource: v1.PersistentVolumeSource{
- AzureDisk: &v1.AzureDiskVolumeSource{
- CachingMode: &cachingMode,
- DiskName: name,
- DataDiskURI: diskURI,
- Kind: &kind,
- FSType: &fsType,
- },
- },
- MountOptions: p.options.MountOptions,
- },
- }
- nodeSelectorTerms := make([]v1.NodeSelectorTerm, 0)
- if zoned {
- // Set node affinity labels based on availability zone labels.
- if len(labels) > 0 {
- requirements := make([]v1.NodeSelectorRequirement, 0)
- for k, v := range labels {
- requirements = append(requirements, v1.NodeSelectorRequirement{Key: k, Operator: v1.NodeSelectorOpIn, Values: []string{v}})
- }
- nodeSelectorTerms = append(nodeSelectorTerms, v1.NodeSelectorTerm{
- MatchExpressions: requirements,
- })
- }
- } else {
- // Set node affinity labels based on fault domains.
- // This is required because unzoned AzureDisk can't be attached to zoned nodes.
- // There are at most 3 fault domains available in each region.
- // Refer https://docs.microsoft.com/en-us/azure/virtual-machines/windows/manage-availability.
- for i := 0; i < 3; i++ {
- requirements := []v1.NodeSelectorRequirement{
- {
- Key: v1.LabelZoneRegion,
- Operator: v1.NodeSelectorOpIn,
- Values: []string{diskController.GetLocation()},
- },
- {
- Key: v1.LabelZoneFailureDomain,
- Operator: v1.NodeSelectorOpIn,
- Values: []string{strconv.Itoa(i)},
- },
- }
- nodeSelectorTerms = append(nodeSelectorTerms, v1.NodeSelectorTerm{
- MatchExpressions: requirements,
- })
- }
- }
- if len(nodeSelectorTerms) > 0 {
- pv.Spec.NodeAffinity = &v1.VolumeNodeAffinity{
- Required: &v1.NodeSelector{
- NodeSelectorTerms: nodeSelectorTerms,
- },
- }
- }
- return pv, nil
- }
|