Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for taskname (0.21 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_AzureDiskVolumeSource_To_core_AzureDiskVolumeSource(in *v1.AzureDiskVolumeSource, out *core.AzureDiskVolumeSource, s conversion.Scope) error {
    	out.DiskName = in.DiskName
    	out.DataDiskURI = in.DataDiskURI
    	out.CachingMode = (*core.AzureDataDiskCachingMode)(unsafe.Pointer(in.CachingMode))
    	out.FSType = (*string)(unsafe.Pointer(in.FSType))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    )
    
    // AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
    type AzureDiskVolumeSource struct {
    	// 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"`
    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

              "cachingMode": {
                "description": "cachingMode is the Host Caching mode: None, Read Only, Read Write.",
                "type": "string"
              },
              "diskName": {
                "default": "",
                "description": "diskName is the Name of the data disk in the blob storage",
                "type": "string"
              },
              "diskURI": {
                "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)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      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;
    
      // cachingMode is the Host Caching mode: None, Read Only, Read Write.
    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

    	return map_AvoidPods
    }
    
    var map_AzureDiskVolumeSource = map[string]string{
    	"":            "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

              "cachingMode": {
                "description": "cachingMode is the Host Caching mode: None, Read Only, Read Write.",
                "type": "string"
              },
              "diskName": {
                "default": "",
                "description": "diskName is the Name of the data disk in the blob storage",
                "type": "string"
              },
              "diskURI": {
                "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)
  7. pkg/apis/core/validation/validation.go

    	diskURISupportedblob := []string{"https://{account-name}.blob.core.windows.net/{container-name}/{disk-name}.vhd"}
    
    	allErrs := field.ErrorList{}
    	if azure.DiskName == "" {
    		allErrs = append(allErrs, field.Required(fldPath.Child("diskName"), ""))
    	}
    
    	if azure.DataDiskURI == "" {
    		allErrs = append(allErrs, field.Required(fldPath.Child("diskURI"), ""))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

    }
    
    // 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;
    
      // 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
    - 280.3K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    )
    
    // 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
    	// Host Caching mode: None, Read Only, Read Write.
    	// +optional
    	CachingMode *AzureDataDiskCachingMode
    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