Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 71 for PersistentVolumeClaims (0.31 sec)

  1. pkg/scheduler/eventhandlers.go

    		case framework.PersistentVolumeClaim:
    			// MaxPDVolumeCountPredicate: add/update PVC will affect counts of PV when it is bound.
    			if handlerRegistration, err = informerFactory.Core().V1().PersistentVolumeClaims().Informer().AddEventHandler(
    				buildEvtResHandler(at, framework.PersistentVolumeClaim, "Pvc"),
    			); err != nil {
    				return err
    			}
    			handlers = append(handlers, handlerRegistration)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	Terminating string = "terminating"
    	Other       string = "other"
    )
    
    func pluginPVOmittingClient(dswp *desiredStateOfWorldPopulator) {
    	fakeClient := &fake.Clientset{}
    	fakeClient.AddReactor("get", "persistentvolumeclaims", func(action core.Action) (bool, runtime.Object, error) {
    		return false, nil, nil
    	})
    	fakeClient.AddReactor("get", "persistentvolumes", func(action core.Action) (bool, runtime.Object, error) {
    		return false, nil, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_generator.go

    		if volumeToMount.VolumeSpec.PersistentVolume != nil && claimSize == nil && !volumeToMount.VolumeSpec.InlineVolumeSpecForCSIMigration {
    			pv := volumeToMount.VolumeSpec.PersistentVolume
    			pvc, err := og.kubeClient.CoreV1().PersistentVolumeClaims(pv.Spec.ClaimRef.Namespace).Get(context.TODO(), pv.Spec.ClaimRef.Name, metav1.GetOptions{})
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    func (dswp *desiredStateOfWorldPopulator) getPVCExtractPV(
    	namespace string, claimName string) (*v1.PersistentVolumeClaim, error) {
    	pvc, err :=
    		dswp.kubeClient.CoreV1().PersistentVolumeClaims(namespace).Get(context.TODO(), claimName, metav1.GetOptions{})
    	if err != nil || pvc == nil {
    		return nil, fmt.Errorf("failed to fetch PVC from API server: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1/types.go

    	// PersistentVolumeClaimRetentionPolicy and specifies that
    	// PersistentVolumeClaims associated with StatefulSet VolumeClaimTemplates
    	// will not be deleted.
    	RetainPersistentVolumeClaimRetentionPolicyType PersistentVolumeClaimRetentionPolicyType = "Retain"
    	// RetentionPersistentVolumeClaimRetentionPolicyType specifies that
    	// PersistentVolumeClaims associated with StatefulSet VolumeClaimTemplates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    				},
    			}, nil
    		})
    	fakeClient.AddReactor("get", "persistentvolumeclaims", func(action core.Action) (bool, runtime.Object, error) {
    		return true, pvc, nil
    	})
    	fakeClient.AddReactor("get", "persistentvolumes", func(action core.Action) (bool, runtime.Object, error) {
    		return true, pv, nil
    	})
    	fakeClient.AddReactor("patch", "persistentvolumeclaims", func(action core.Action) (bool, runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/storage/v1/generated.proto

      // allowVolumeExpansion shows whether the storage class allow volume expand.
      // +optional
      optional bool allowVolumeExpansion = 6;
    
      // volumeBindingMode indicates how PersistentVolumeClaims should be
      // provisioned and bound.  When unset, VolumeBindingImmediate is used.
      // This field is only honored by servers that enable the VolumeScheduling feature.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // allowVolumeExpansion shows whether the storage class allow volume expand
      // +optional
      optional bool allowVolumeExpansion = 6;
    
      // volumeBindingMode indicates how PersistentVolumeClaims should be
      // provisioned and bound.  When unset, VolumeBindingImmediate is used.
      // This field is only honored by servers that enable the VolumeScheduling feature.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1/generated.proto

      // allowVolumeExpansion shows whether the storage class allow volume expand.
      // +optional
      optional bool allowVolumeExpansion = 6;
    
      // volumeBindingMode indicates how PersistentVolumeClaims should be
      // provisioned and bound.  When unset, VolumeBindingImmediate is used.
      // This field is only honored by servers that enable the VolumeScheduling feature.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1beta1/generated.proto

      // allowVolumeExpansion shows whether the storage class allow volume expand
      // +optional
      optional bool allowVolumeExpansion = 6;
    
      // volumeBindingMode indicates how PersistentVolumeClaims should be
      // provisioned and bound.  When unset, VolumeBindingImmediate is used.
      // This field is only honored by servers that enable the VolumeScheduling feature.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
Back to top