Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AzureManagedDisk (0.3 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))
    	}
    
    	if azure.Kind != nil && *azure.Kind != core.AzureManagedDisk && strings.Index(azure.DataDiskURI, "https://") != 0 {
    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/types.go

    	AzureDataDiskCachingReadWrite AzureDataDiskCachingMode = "ReadWrite"
    
    	AzureSharedBlobDisk    AzureDataDiskKind = "Shared"
    	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 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	AzureDataDiskCachingReadWrite AzureDataDiskCachingMode = "ReadWrite"
    
    	AzureSharedBlobDisk    AzureDataDiskKind = "Shared"
    	AzureDedicatedBlobDisk AzureDataDiskKind = "Dedicated"
    	AzureManagedDisk       AzureDataDiskKind = "Managed"
    )
    
    // AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
    type AzureDiskVolumeSource struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top