Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for ReclaimPolicy (1.43 sec)

  1. pkg/controller/volume/persistentvolume/pv_controller_base.go

    // The in-tree PV deletion protection finalizer is only added if the reclaimPolicy associated with the PV is `Delete`.
    // The in-tree PV deletion protection finalizer is removed if the reclaimPolicy associated with the PV is `Retain` or
    // `Recycle`, removing the finalizer is necessary to reflect the recalimPolicy updates on the PV.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/pv_controller_test.go

    			expVolumeFinalizers: nil,
    			expModified:         false,
    		},
    		{
    			// When ReclaimPolicy is Retain ensure that in-tree pv deletion protection finalizer is not added.
    			name:                "13-12 migration is disabled, volume has no finalizers, reclaimPolicy is Retain",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  3. pkg/apis/storage/validation/validation_test.go

    			"foo-parameter2":              "{\"embedded\": \"json\", \"with\": {\"structures\":\"inside\"}}",
    		},
    		ReclaimPolicy:     &deleteReclaimPolicy,
    		VolumeBindingMode: &immediateMode1,
    	}, {
    		// retain reclaimPolicy
    		ObjectMeta:        metav1.ObjectMeta{Name: "foo"},
    		Provisioner:       "kubernetes.io/foo-provisioner",
    		ReclaimPolicy:     &retainReclaimPolicy,
    		VolumeBindingMode: &immediateMode1,
    	}}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/framework_test.go

    func newVolumeWithFinalizers(name, capacity, boundToClaimUID, boundToClaimName string, phase v1.PersistentVolumePhase, reclaimPolicy v1.PersistentVolumeReclaimPolicy, class string, finalizers []string, annotations ...string) *v1.PersistentVolume {
    	retVolume := newVolume(name, capacity, boundToClaimUID, boundToClaimName, phase, reclaimPolicy, class, annotations...)
    	retVolume.SetFinalizers(finalizers)
    	return retVolume
    }
    
    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/apis/storage/zz_generated.deepcopy.go

    		in, out := &in.Parameters, &out.Parameters
    		*out = make(map[string]string, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val
    		}
    	}
    	if in.ReclaimPolicy != nil {
    		in, out := &in.ReclaimPolicy, &out.ReclaimPolicy
    		*out = new(core.PersistentVolumeReclaimPolicy)
    		**out = **in
    	}
    	if in.MountOptions != nil {
    		in, out := &in.MountOptions, &out.MountOptions
    		*out = make([]string, len(*in))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1beta1/types.go

    	// reclaimPolicy controls the reclaimPolicy for dynamically provisioned PersistentVolumes of this storage class.
    	// Defaults to Delete.
    	// +optional
    	ReclaimPolicy *v1.PersistentVolumeReclaimPolicy `json:"reclaimPolicy,omitempty" protobuf:"bytes,4,opt,name=reclaimPolicy,casttype=k8s.io/api/core/v1.PersistentVolumeReclaimPolicy"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1/types.go

    	// reclaimPolicy controls the reclaimPolicy for dynamically provisioned PersistentVolumes of this storage class.
    	// Defaults to Delete.
    	// +optional
    	ReclaimPolicy *v1.PersistentVolumeReclaimPolicy `json:"reclaimPolicy,omitempty" protobuf:"bytes,4,opt,name=reclaimPolicy,casttype=k8s.io/api/core/v1.PersistentVolumeReclaimPolicy"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storage/v1/generated.proto

      // create volumes of this storage class.
      // +optional
      map<string, string> parameters = 3;
    
      // reclaimPolicy controls the reclaimPolicy for dynamically provisioned PersistentVolumes of this storage class.
      // Defaults to Delete.
      // +optional
      optional string reclaimPolicy = 4;
    
      // mountOptions controls the mountOptions for dynamically provisioned PersistentVolumes of this storage class.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1beta1/generated.proto

      // create volumes of this storage class.
      // +optional
      map<string, string> parameters = 3;
    
      // reclaimPolicy controls the reclaimPolicy for dynamically provisioned PersistentVolumes of this storage class.
      // Defaults to Delete.
      // +optional
      optional string reclaimPolicy = 4;
    
      // mountOptions controls the mountOptions for dynamically provisioned PersistentVolumes of this storage class.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1/types_swagger_doc_generated.go

    	"parameters":           "parameters holds the parameters for the provisioner that should create volumes of this storage class.",
    	"reclaimPolicy":        "reclaimPolicy controls the reclaimPolicy for dynamically provisioned PersistentVolumes of this storage class. Defaults to Delete.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 07:07:45 UTC 2023
    - 23.2K bytes
    - Viewed (0)
Back to top