Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for EBS (0.03 sec)

  1. pkg/volume/util/attach_limit.go

    // shared between volume package and scheduler
    
    const (
    	// EBSVolumeLimitKey resource name that will store volume limits for EBS
    	EBSVolumeLimitKey = "attachable-volumes-aws-ebs"
    	// EBSNitroLimitRegex finds nitro instance types with different limit than EBS defaults
    	EBSNitroLimitRegex = "^[cmr]5.*|t3|z1d"
    	// DefaultMaxEBSVolumes is the limit for volumes attached to an instance.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 17:25:30 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/nodevolumelimits/csi_test.go

    	// In-tree volumes
    	inTreeOneVolPod := st.MakePod().PVC("csi-kubernetes.io/aws-ebs-0").Obj()
    	inTreeTwoVolPod := st.MakePod().PVC("csi-kubernetes.io/aws-ebs-1").PVC("csi-kubernetes.io/aws-ebs-2").Obj()
    
    	// pods with matching csi driver names
    	csiEBSOneVolPod := st.MakePod().PVC("csi-ebs.csi.aws.com-0").Obj()
    	csiEBSTwoVolPod := st.MakePod().PVC("csi-ebs.csi.aws.com-1").PVC("csi-ebs.csi.aws.com-2").Obj()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/metrics/metrics.go

    }
    
    // volumeCount is a map of maps used as a counter, e.g.:
    //
    //	node 172.168.1.100.ec2.internal has 10 EBS and 3 glusterfs PVC in use:
    //	{"172.168.1.100.ec2.internal": {"aws-ebs": 10, "glusterfs": 3}}
    //	state actual_state_of_world contains a total of 10 EBS volumes:
    //	{"actual_state_of_world": {"aws-ebs": 10}}
    type volumeCount map[string]map[string]int64
    
    func (v volumeCount) add(typeKey, counterKey string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 10 06:30:05 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi_test.go

    			maxVols:      4,
    			test:         "fits when node capacity >= new pod's EBS volumes",
    		},
    		{
    			newPod:       twoVolPod,
    			existingPods: []*v1.Pod{oneVolPod},
    			filterName:   ebsVolumeFilterType,
    			driverName:   csilibplugins.AWSEBSInTreePluginName,
    			maxVols:      2,
    			test:         "doesn't fit when node capacity < new pod's EBS volumes",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/index_test.go

    			VolumeMode:  &fs,
    		},
    	}
    
    	index := newPersistentVolumeOrderedIndex()
    	index.store.Add(gce)
    	index.store.Add(ebs)
    	index.store.Add(nfs)
    
    	volume, _ := index.findBestMatchForClaim(claim, false)
    	if volume.Name != ebs.Name {
    		t.Errorf("Expected %s but got volume %s instead", ebs.Name, volume.Name)
    	}
    
    	claim.Spec.AccessModes = []v1.PersistentVolumeAccessMode{v1.ReadWriteOnce, v1.ReadOnlyMany}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 44K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions.go

    // are already mounted. If there is already a volume mounted on that node, another pod that uses the same volume
    // can't be scheduled there.
    // This is GCE, Amazon EBS, ISCSI and Ceph RBD specific for now:
    // - GCE PD allows multiple mounts as long as they're all read-only
    // - AWS EBS forbids any two pods mounting the same volume ID
    // - Ceph RBD forbids if any two pods share at least same monitor, and match pool and image, and the image is read-only
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi.go

    	// TODO We should determine the max based on VM size
    	defaultMaxAzureDiskVolumes = 16
    
    	// ebsVolumeFilterType defines the filter name for ebsVolumeFilter.
    	ebsVolumeFilterType = "EBS"
    	// gcePDVolumeFilterType defines the filter name for gcePDVolumeFilter.
    	gcePDVolumeFilterType = "GCE"
    	// azureDiskVolumeFilterType defines the filter name for azureDiskVolumeFilter.
    	azureDiskVolumeFilterType = "AzureDisk"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top