Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for PVCs (0.12 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    			}
    		}
    		return true, nil
    	})
    }
    
    func (env *testEnv) updateClaims(ctx context.Context, pvcs []*v1.PersistentVolumeClaim) error {
    	for i, pvc := range pvcs {
    		newPvc, err := env.client.CoreV1().PersistentVolumeClaims(pvc.Namespace).Update(ctx, pvc, metav1.UpdateOptions{})
    		if err != nil {
    			return err
    		}
    		pvcs[i] = newPvc
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/binder.go

    	unboundClaimsDelayBinding []*v1.PersistentVolumeClaim
    	// unboundClaimsImmediate are the pod's unbound with immediate binding PVCs (i.e., supposed to be bound already) .
    	unboundClaimsImmediate []*v1.PersistentVolumeClaim
    	// unboundVolumesDelayBinding are PVs that belong to storage classes of the pod's unbound PVCs with delayed binding.
    	unboundVolumesDelayBinding map[string][]*v1.PersistentVolume
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_pod_control.go

    func (spc *StatefulPodControl) CreateStatefulPod(ctx context.Context, set *apps.StatefulSet, pod *v1.Pod) error {
    	// Create the Pod's PVCs prior to creating the Pod
    	if err := spc.createPersistentVolumeClaims(set, pod); err != nil {
    		spc.recordPodEvent("create", set, pod, err)
    		return err
    	}
    	// If we created the PVCs attempt to create the Pod
    	err := spc.objectMgr.CreatePod(ctx, pod)
    	// sink already exists errors
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_pod_control_test.go

    	set := newStatefulSet(3)
    	pod := newStatefulSetPod(set, 0)
    	fakeClient := &fake.Clientset{}
    	pvcs := getPersistentVolumeClaims(set, pod)
    	pvcIndexer := cache.NewIndexer(cache.MetaNamespaceKeyFunc, cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc})
    	for k := range pvcs {
    		pvc := pvcs[k]
    		pvcIndexer.Add(&pvc)
    	}
    	pvcLister := corelisters.NewPersistentVolumeClaimLister(pvcIndexer)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/nodevolumelimits/csi_test.go

    			limitSource:  "csinode-with-no-limit",
    		},
    		// should count pending PVCs
    		{
    			newPod:       csiEBSOneVolPod,
    			existingPods: []*v1.Pod{pendingVolumePod, csiEBSTwoVolPod},
    			filterName:   "csi",
    			maxVols:      2,
    			driverNames:  []string{ebsCSIDriverName},
    			test:         "count pending PVCs towards volume limit <= pods CSI volume",
    			limitSource:  "node",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. pkg/controller/volume/pvcprotection/pvc_protection_controller.go

    	if !deleted && !volumeutil.IsPodTerminated(pod, pod.Status) && pod.Spec.NodeName != "" {
    		return
    	}
    
    	logger.V(4).Info("Enqueuing PVCs for Pod", "pod", klog.KObj(pod), "podUID", pod.UID)
    
    	// Enqueue all PVCs that the pod uses
    	for _, volume := range pod.Spec.Volumes {
    		switch {
    		case volume.PersistentVolumeClaim != nil:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"whenDeleted": "WhenDeleted specifies what happens to PVCs created from StatefulSet VolumeClaimTemplates when the StatefulSet is deleted. The default policy of `Retain` causes PVCs to not be affected by StatefulSet deletion. The `Delete` policy causes those PVCs to be deleted.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1/generated.proto

    // StatefulSetPersistentVolumeClaimRetentionPolicy describes the policy used for PVCs
    // created from the StatefulSet VolumeClaimTemplates.
    message StatefulSetPersistentVolumeClaimRetentionPolicy {
      // WhenDeleted specifies what happens to PVCs created from StatefulSet
      // VolumeClaimTemplates when the StatefulSet is deleted. The default policy
      // of `Retain` causes PVCs to not be affected by StatefulSet deletion. The
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/types.go

    // StatefulSetPersistentVolumeClaimRetentionPolicy describes the policy used for PVCs
    // created from the StatefulSet VolumeClaimTemplates.
    type StatefulSetPersistentVolumeClaimRetentionPolicy struct {
    	// WhenDeleted specifies what happens to PVCs created from StatefulSet
    	// VolumeClaimTemplates when the StatefulSet is deleted. The default policy
    	// of `Retain` causes PVCs to not be affected by StatefulSet deletion. The
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  10. pkg/controller/volume/pvprotection/pv_protection_controller.go

    	"k8s.io/kubernetes/pkg/util/slice"
    	volumeutil "k8s.io/kubernetes/pkg/volume/util"
    )
    
    // Controller is controller that removes PVProtectionFinalizer
    // from PVs that are not bound to PVCs.
    type Controller struct {
    	client clientset.Interface
    
    	pvLister       corelisters.PersistentVolumeLister
    	pvListerSynced cache.InformerSynced
    
    	queue workqueue.TypedRateLimitingInterface[string]
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top