Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 124 for PersistentVolumeClaims (0.32 sec)

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

    	switch resourceName {
    	case "pods":
    		return PodValidateLimitFunc(limitRange, obj.(*api.Pod))
    	case "persistentvolumeclaims":
    		return PersistentVolumeClaimValidateLimitFunc(limitRange, obj.(*api.PersistentVolumeClaim))
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 13:04:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  4. 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)
  5. staging/src/k8s.io/api/storage/v1/types_swagger_doc_generated.go

    	"allowVolumeExpansion": "allowVolumeExpansion shows whether the storage class allow volume expand.",
    	"volumeBindingMode":    "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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 07:07:45 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1beta1/types_swagger_doc_generated.go

    	"allowVolumeExpansion": "allowVolumeExpansion shows whether the storage class allow volume expand",
    	"volumeBindingMode":    "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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:18:43 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/api/apps/v1beta2/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: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  9. 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)
  10. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi_test.go

    			newPod:           ephemeralVolumePod,
    			ephemeralEnabled: true,
    			test:             "volume missing",
    			wantStatus:       framework.NewStatus(framework.UnschedulableAndUnresolvable, `looking up PVC test/abc-xyz: persistentvolumeclaims "abc-xyz" not found`),
    		},
    		{
    			newPod:           ephemeralVolumePod,
    			ephemeralEnabled: true,
    			extraClaims:      []v1.PersistentVolumeClaim{*conflictingClaim},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 36.8K bytes
    - Viewed (0)
Back to top