Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for PersistentVolumeClaims (0.29 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. api/openapi-spec/v3/api__v1_openapi.json

                ],
                "default": {},
                "description": "spec defines the desired characteristics of a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
              },
              "status": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimStatus"
                  }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"string"},
    							Format:      "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top