Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 124 for PersistentVolumeClaims (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. plugin/pkg/admission/noderestriction/admission_test.go

    			attributes: admission.NewAttributesRecord(pvcpod, nil, podKind, pvcpod.Namespace, pvcpod.Name, podResource, "", admission.Create, &metav1.CreateOptions{}, false, mynode),
    			err:        "reference persistentvolumeclaims",
    		},
    
    		// My node object
    		{
    			name:       "allow create of my node",
    			podsGetter: noExistingPods,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/api/core/v1/types.go

    )
    
    // +enum
    type PersistentVolumeClaimPhase string
    
    const (
    	// used for PersistentVolumeClaims that are not yet bound
    	ClaimPending PersistentVolumeClaimPhase = "Pending"
    	// used for PersistentVolumeClaims that are bound
    	ClaimBound PersistentVolumeClaimPhase = "Bound"
    	// used for PersistentVolumeClaims that lost their underlying
    	// PersistentVolume. The claim was bound to a PersistentVolume and this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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