Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for AzureDiskVolumeSource (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/api/core/v1/generated.pb.go

    func (m *AzureDiskVolumeSource) Reset()      { *m = AzureDiskVolumeSource{} }
    func (*AzureDiskVolumeSource) ProtoMessage() {}
    func (*AzureDiskVolumeSource) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{5}
    }
    func (m *AzureDiskVolumeSource) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      repeated PreferAvoidPodsEntry preferAvoidPods = 1;
    }
    
    // AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
    message AzureDiskVolumeSource {
      // diskName is the Name of the data disk in the blob storage
      optional string diskName = 1;
    
      // diskURI is the URI of data disk in the blob storage
      optional string diskURI = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
Back to top