Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for EBS (0.04 sec)

  1. pkg/apis/storage/validation/validation.go

    // validateReclaimPolicy tests that the reclaim policy is one of the supported. It is up to the volume plugin to reject
    // provisioning for storage classes with impossible reclaim policies, e.g. EBS is not Recyclable
    func validateReclaimPolicy(reclaimPolicy *api.PersistentVolumeReclaimPolicy, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if len(string(*reclaimPolicy)) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 00:47:13 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.2.md

      * Dynamic Provisioning of PersistentVolumes: Kubernetes previously required all
    volumes to be manually provisioned by a cluster administrator before use. With
    this feature, volume plugins that support it (GCE PD, AWS EBS, and Cinder) can
    automatically provision a PersistentVolume to bind to an unfulfilled
    PersistentVolumeClaim.
      * Run multiple schedulers in parallel, e.g. one or more custom schedulers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.17.md

    - The in-tree AWS EBS plugin `kubernetes.io/aws-ebs` is now deprecated and will be removed in 1.21. Users that self-deploy Kubernetes on AWS should enable CSIMigration + CSIMigrationAWS features and install the AWS EBS CSI Driver (https://github.com/kubernetes-sigs/aws-ebs-csi-driver) to avoid disruption to existing Pod and PVC objects at that time. Users should start using the AWS EBS CSI CSI Driver directly for any new volumes. ([#85237](https://g...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.9.md

    ### AWS
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  5. pkg/apis/storage/types.go

    	// +optional
    	metav1.ObjectMeta
    
    	// provisioner is the driver expected to handle this StorageClass.
    	// This is an optionally-prefixed name, like a label key.
    	// For example: "kubernetes.io/gce-pd" or "kubernetes.io/aws-ebs".
    	// This value may not be empty.
    	Provisioner string
    
    	// parameters holds parameters for the provisioner.
    	// These values are opaque to the  system and are passed directly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  6. pkg/features/kube_features.go

    	// deletion ordering.
    	HonorPVReclaimPolicy featuregate.Feature = "HonorPVReclaimPolicy"
    
    	// owner: @leakingtapan
    	// alpha: v1.21
    	//
    	// Disables the AWS EBS in-tree driver.
    	InTreePluginAWSUnregister featuregate.Feature = "InTreePluginAWSUnregister"
    
    	// owner: @andyzhangx
    	// alpha: v1.21
    	//
    	// Disables the Azure Disk in-tree driver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    }
    
    // AWSElasticBlockStoreVolumeSource represents a Persistent Disk resource in AWS.
    //
    // An AWS EBS disk must exist before mounting to a container. The disk
    // must also be in the same AWS zone as the kubelet. An AWS EBS disk
    // can only be mounted as read/write once. AWS EBS volumes support
    // ownership management and SELinux relabeling.
    type AWSElasticBlockStoreVolumeSource 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)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

        },
        "io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource": {
          "description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.",
          "properties": {
            "fsType": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.11.md

    New alpha features include:
    * Online volume resizing will increase the filesystem size of a resized volume without requiring a Pod restart.
    * AWS EBS and GCE PD volumes support increased limits on the maximum number of attached volumes per node.
    * Subpath volume directories can be created using DownwardAPI environment variables.
    
    ### SIG Windows
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/core/v1/generated.proto

    //
    // An AWS EBS disk must exist before mounting to a container. The disk
    // must also be in the same AWS zone as the kubelet. An AWS EBS disk
    // can only be mounted as read/write once. AWS EBS volumes support
    // ownership management and SELinux relabeling.
    message AWSElasticBlockStoreVolumeSource {
      // volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
Back to top