Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for cachingMode (0.3 sec)

  1. pkg/apis/core/validation/validation.go

    	}
    
    	if azure.DataDiskURI == "" {
    		allErrs = append(allErrs, field.Required(fldPath.Child("diskURI"), ""))
    	}
    
    	if azure.CachingMode != nil && !supportedCachingModes.Has(*azure.CachingMode) {
    		allErrs = append(allErrs, field.NotSupported(fldPath.Child("cachingMode"), *azure.CachingMode, sets.List(supportedCachingModes)))
    	}
    
    	if azure.Kind != nil && !supportedDiskKinds.Has(*azure.Kind) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    	out.DiskName = in.DiskName
    	out.DataDiskURI = in.DataDiskURI
    	out.CachingMode = (*core.AzureDataDiskCachingMode)(unsafe.Pointer(in.CachingMode))
    	out.FSType = (*string)(unsafe.Pointer(in.FSType))
    	out.ReadOnly = (*bool)(unsafe.Pointer(in.ReadOnly))
    	out.Kind = (*core.AzureDataDiskKind)(unsafe.Pointer(in.Kind))
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// diskURI is the URI of data disk in the blob storage
    	DataDiskURI string `json:"diskURI" protobuf:"bytes,2,opt,name=diskURI"`
    	// cachingMode is the Host Caching mode: None, Read Only, Read Write.
    	// +optional
    	CachingMode *AzureDataDiskCachingMode `json:"cachingMode,omitempty" protobuf:"bytes,3,opt,name=cachingMode,casttype=AzureDataDiskCachingMode"`
    	// fsType is Filesystem type to mount.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      optional string diskName = 1;
    
      // diskURI is the URI of data disk in the blob storage
      optional string diskURI = 2;
    
      // cachingMode is the Host Caching mode: None, Read Only, Read Write.
      // +optional
      optional string cachingMode = 3;
    
      // fsType is Filesystem type to mount.
      // Must be a filesystem type supported by the host operating system.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"diskName":    "diskName is the Name of the data disk in the blob storage",
    	"diskURI":     "diskURI is the URI of data disk in the blob storage",
    	"cachingMode": "cachingMode is the Host Caching mode: None, Read Only, Read Write.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      optional string diskName = 1;
    
      // diskURI is the URI of data disk in the blob storage
      optional string diskURI = 2;
    
      // cachingMode is the Host Caching mode: None, Read Only, Read Write.
      // +optional
      optional string cachingMode = 3;
    
      // fsType is Filesystem type to mount.
      // Must be a filesystem type supported by the host operating system.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

          "io.k8s.api.core.v1.AzureDiskVolumeSource": {
            "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
            "properties": {
              "cachingMode": {
                "description": "cachingMode is the Host Caching mode: None, Read Only, Read Write.",
                "type": "string"
              },
              "diskName": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

          "io.k8s.api.core.v1.AzureDiskVolumeSource": {
            "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
            "properties": {
              "cachingMode": {
                "description": "cachingMode is the Host Caching mode: None, Read Only, Read Write.",
                "type": "string"
              },
              "diskName": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	// The Name of the data disk in the blob storage
    	DiskName string
    	// The URI of the data disk in the blob storage
    	DataDiskURI string
    	// Host Caching mode: None, Read Only, Read Write.
    	// +optional
    	CachingMode *AzureDataDiskCachingMode
    	// Filesystem type to mount.
    	// Must be a filesystem type supported by the host operating system.
    	// Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
    	// +optional
    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