Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for AzureDiskVolumeSource (0.44 sec)

  1. 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)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      // +listType=atomic
      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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	Quobyte *QuobyteVolumeSource `json:"quobyte,omitempty" protobuf:"bytes,21,opt,name=quobyte"`
    	// azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
    	// +optional
    	AzureDisk *AzureDiskVolumeSource `json:"azureDisk,omitempty" protobuf:"bytes,22,opt,name=azureDisk"`
    	// photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "type": "string"
              }
            },
            "required": [
              "volumeID"
            ],
            "type": "object"
          },
          "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": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "discriminator": "type",
                "fields-to-discriminateBy": {
                  "localhostProfile": "LocalhostProfile"
                }
              }
            ]
          },
          "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": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (AzureDiskVolumeSource) SwaggerDoc() map[string]string {
    	return map_AzureDiskVolumeSource
    }
    
    var map_AzureFilePersistentVolumeSource = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    		if len(*azure.SecretNamespace) == 0 {
    			allErrs = append(allErrs, field.Required(fldPath.Child("secretNamespace"), ""))
    		}
    	}
    	return allErrs
    }
    
    func validateAzureDisk(azure *core.AzureDiskVolumeSource, fldPath *field.Path) field.ErrorList {
    	var supportedCachingModes = sets.New(
    		core.AzureDataDiskCachingNone,
    		core.AzureDataDiskCachingReadOnly,
    		core.AzureDataDiskCachingReadWrite)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top