Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 71 for PersistentVolumeClaims (0.35 sec)

  1. 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)
  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. 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)
  4. 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)
  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)
  7. pkg/apis/core/types.go

    // These are the valid value for PersistentVolumeClaimPhase
    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
    - 268.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"status":   "status represents the current information/status of a persistent volume claim. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims",
    }
    
    func (PersistentVolumeClaim) SwaggerDoc() map[string]string {
    	return map_PersistentVolumeClaim
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims
      // +optional
      optional PersistentVolumeClaimSpec spec = 2;
    
      // status represents the current information/status of a persistent volume claim.
      // Read-only.
      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims
      // +optional
      optional PersistentVolumeClaimStatus status = 3;
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. pkg/scheduler/schedule_one_test.go

    			informerFactory := informers.NewSharedInformerFactory(cs, 0)
    			for _, pvc := range test.pvcs {
    				metav1.SetMetaDataAnnotation(&pvc.ObjectMeta, volume.AnnBindCompleted, "true")
    				cs.CoreV1().PersistentVolumeClaims(pvc.Namespace).Create(ctx, &pvc, metav1.CreateOptions{})
    				if pvName := pvc.Spec.VolumeName; pvName != "" {
    					pv := v1.PersistentVolume{ObjectMeta: metav1.ObjectMeta{Name: pvName}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
Back to top