Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for ReclaimPolicy (2.3 sec)

  1. pkg/apis/storage/v1beta1/zz_generated.conversion.go

    	out.ObjectMeta = in.ObjectMeta
    	out.Provisioner = in.Provisioner
    	out.Parameters = *(*map[string]string)(unsafe.Pointer(&in.Parameters))
    	out.ReclaimPolicy = (*core.PersistentVolumeReclaimPolicy)(unsafe.Pointer(in.ReclaimPolicy))
    	out.MountOptions = *(*[]string)(unsafe.Pointer(&in.MountOptions))
    	out.AllowVolumeExpansion = (*bool)(unsafe.Pointer(in.AllowVolumeExpansion))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:01 UTC 2022
    - 41K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1beta1/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(corev1.PersistentVolumeReclaimPolicy)
    		**out = **in
    	}
    	if in.MountOptions != nil {
    		in, out := &in.MountOptions, &out.MountOptions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:01 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1beta1/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: Sun Sep 17 09:18:43 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  8. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. pkg/apis/storage/types.go

    	// not empty.  The maximum number of parameters is
    	// 512, with a cumulative max size of 256K
    	// +optional
    	Parameters map[string]string
    
    	// reclaimPolicy is the reclaim policy that dynamically provisioned
    	// PersistentVolumes of this storage class are created with
    	// +optional
    	ReclaimPolicy *api.PersistentVolumeReclaimPolicy
    
    	// mountOptions are the mount options that dynamically provisioned
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
Back to top