Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for PersistentVolumeClaims (0.34 sec)

  1. 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)
  2. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	if err != nil {
    		logger.V(4).Info("Error getting namespace & name of pvc to get pvc from informer", "pvcKey", key, "err", err)
    		return nil
    	}
    	pvc, err := adc.pvcLister.PersistentVolumeClaims(namespace).Get(name)
    	if apierrors.IsNotFound(err) {
    		logger.V(4).Info("Error getting pvc from informer", "pvcKey", key, "err", err)
    		return nil
    	}
    	if err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_control.go

    // implements the documented semantics for StatefulSets. podControl is the PodControlInterface used to create, update,
    // and delete Pods and to create PersistentVolumeClaims. statusUpdater is the StatefulSetStatusUpdaterInterface used
    // to update the status of StatefulSets. You should use an instance returned from NewRealStatefulPodControl() for any
    // scenario other than testing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/framework_test.go

    		VolumePlugins:             []volume.VolumePlugin{},
    		VolumeInformer:            informerFactory.Core().V1().PersistentVolumes(),
    		ClaimInformer:             informerFactory.Core().V1().PersistentVolumeClaims(),
    		ClassInformer:             informerFactory.Storage().V1().StorageClasses(),
    		PodInformer:               informerFactory.Core().V1().Pods(),
    		NodeInformer:              informerFactory.Core().V1().Nodes(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/pv_controller_test.go

    		fakeVolumeWatch := watch.NewFake()
    		client.PrependWatchReactor("persistentvolumes", core.DefaultWatchReactor(fakeVolumeWatch, nil))
    		fakeClaimWatch := watch.NewFake()
    		client.PrependWatchReactor("persistentvolumeclaims", core.DefaultWatchReactor(fakeClaimWatch, nil))
    		client.PrependWatchReactor("storageclasses", core.DefaultWatchReactor(watch.NewFake(), nil))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumebinding/binder.go

    	for i, claim = range claimsToProvision {
    		logger.V(5).Info("Updating claims objects to trigger volume provisioning", "pod", klog.KObj(pod), "PVC", klog.KObj(claim))
    		newClaim, err := b.kubeClient.CoreV1().PersistentVolumeClaims(claim.Namespace).Update(ctx, claim, metav1.UpdateOptions{})
    		if err != nil {
    			logger.V(4).Info("Updating PersistentVolumeClaim: binding to volume failed", "PVC", klog.KObj(claim), "err", err)
    			return err
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top