Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for diskURI (0.16 sec)

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

    	}
    
    	// validate that DiskUri is the correct format
    	if azure.Kind != nil && *azure.Kind == core.AzureManagedDisk && strings.Index(azure.DataDiskURI, "/subscriptions/") != 0 {
    		allErrs = append(allErrs, field.NotSupported(fldPath.Child("diskURI"), azure.DataDiskURI, diskURISupportedManaged))
    	}
    
    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. staging/src/k8s.io/api/core/v1/types.go

    	// diskName is the Name of the data disk in the blob storage
    	DiskName string `json:"diskName" protobuf:"bytes,1,opt,name=diskName"`
    	// 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "default": "",
                "description": "diskName is the Name of the data disk in the blob storage",
                "type": "string"
              },
              "diskURI": {
                "default": "",
                "description": "diskURI is the URI of data disk in the blob storage",
                "type": "string"
              },
              "fsType": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

    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;
    
      // cachingMode is the Host Caching mode: None, Read Only, Read Write.
      // +optional
      optional string cachingMode = 3;
    
      // fsType is Filesystem type to mount.
    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

    	"":            "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
    	"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. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "default": "",
                "description": "diskName is the Name of the data disk in the blob storage",
                "type": "string"
              },
              "diskURI": {
                "default": "",
                "description": "diskURI is the URI of data disk in the blob storage",
                "type": "string"
              },
              "fsType": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

    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;
    
      // cachingMode is the Host Caching mode: None, Read Only, Read Write.
      // +optional
      optional string cachingMode = 3;
    
      // 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
    - 280.3K bytes
    - Viewed (0)
Back to top