Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for AzureDiskVolumeSource (0.63 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/azurediskvolumesource.go

    	Kind        *v1.AzureDataDiskKind        `json:"kind,omitempty"`
    }
    
    // AzureDiskVolumeSourceApplyConfiguration constructs an declarative configuration of the AzureDiskVolumeSource type for use with
    // apply.
    func AzureDiskVolumeSource() *AzureDiskVolumeSourceApplyConfiguration {
    	return &AzureDiskVolumeSourceApplyConfiguration{}
    }
    
    // WithDiskName sets the DiskName field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi_test.go

    		VolumeSource: v1.VolumeSource{
    			AzureDisk: &v1.AzureDiskVolumeSource{},
    		},
    	}).Obj()
    	twoAzureDiskPod := st.MakePod().Volume(v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			AzureDisk: &v1.AzureDiskVolumeSource{},
    		},
    	}).Volume(v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			AzureDisk: &v1.AzureDiskVolumeSource{},
    		},
    	}).Obj()
    	splitAzureDiskPod := st.MakePod().Volume(v1.Volume{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/volume_manager_test.go

    						RBD: &v1.RBDVolumeSource{},
    					},
    				},
    				{
    					Name: "vol3",
    					VolumeSource: v1.VolumeSource{
    						AzureDisk: &v1.AzureDiskVolumeSource{},
    					},
    				},
    				{
    					Name: "vol03",
    					VolumeSource: v1.VolumeSource{
    						AzureDisk: &v1.AzureDiskVolumeSource{},
    					},
    				},
    			},
    		},
    	}
    
    	kubeClient := fake.NewSimpleClientset(pod)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/defaults.go

    }
    func SetDefaults_ISCSIPersistentVolumeSource(obj *v1.ISCSIPersistentVolumeSource) {
    	if obj.ISCSIInterface == "" {
    		obj.ISCSIInterface = "default"
    	}
    }
    func SetDefaults_AzureDiskVolumeSource(obj *v1.AzureDiskVolumeSource) {
    	if obj.CachingMode == nil {
    		obj.CachingMode = new(v1.AzureDataDiskCachingMode)
    		*obj.CachingMode = v1.AzureDataDiskCachingReadWrite
    	}
    	if obj.Kind == nil {
    		obj.Kind = new(v1.AzureDataDiskKind)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.AzureDiskVolumeSource)(nil), (*core.AzureDiskVolumeSource)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_AzureDiskVolumeSource_To_core_AzureDiskVolumeSource(a.(*v1.AzureDiskVolumeSource), b.(*core.AzureDiskVolumeSource), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  6. pkg/apis/core/fuzzer/fuzzer.go

    			volumeModes := []core.PersistentVolumeMode{core.PersistentVolumeFilesystem, core.PersistentVolumeBlock}
    			pvc.Spec.VolumeMode = &volumeModes[c.Rand.Intn(len(volumeModes))]
    		},
    		func(obj *core.AzureDiskVolumeSource, c fuzz.Continue) {
    			if obj.CachingMode == nil {
    				obj.CachingMode = new(core.AzureDataDiskCachingMode)
    				*obj.CachingMode = core.AzureDataDiskCachingReadWrite
    			}
    			if obj.Kind == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. pkg/apis/core/zz_generated.deepcopy.go

    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureDiskVolumeSource.
    func (in *AzureDiskVolumeSource) DeepCopy() *AzureDiskVolumeSource {
    	if in == nil {
    		return nil
    	}
    	out := new(AzureDiskVolumeSource)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureDiskVolumeSource.
    func (in *AzureDiskVolumeSource) DeepCopy() *AzureDiskVolumeSource {
    	if in == nil {
    		return nil
    	}
    	out := new(AzureDiskVolumeSource)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  9. api/api-rules/violation_exceptions.list

    API rule violation: names_match,k8s.io/api/authorization/v1beta1,SubjectAccessReviewSpec,Groups
    API rule violation: names_match,k8s.io/api/core/v1,AzureDiskVolumeSource,DataDiskURI
    API rule violation: names_match,k8s.io/api/core/v1,ContainerStatus,LastTerminationState
    API rule violation: names_match,k8s.io/api/core/v1,DaemonEndpoint,Port
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  10. pkg/apis/core/types.go

    	AzureDedicatedBlobDisk AzureDataDiskKind = "Dedicated"
    	AzureManagedDisk       AzureDataDiskKind = "Managed"
    )
    
    // AzureDiskVolumeSource represents an Azure Data Disk mount on the host and bind mount to the pod.
    type AzureDiskVolumeSource struct {
    	// The Name of the data disk in the blob storage
    	DiskName string
    	// The URI of the data disk in the blob storage
    	DataDiskURI string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top