Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for claimrefns (0.22 sec)

  1. pkg/printers/internalversion/printers.go

    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    
    	claimRefUID := ""
    	if obj.Spec.ClaimRef != nil {
    		claimRefUID += obj.Spec.ClaimRef.Namespace
    		claimRefUID += "/"
    		claimRefUID += obj.Spec.ClaimRef.Name
    	}
    
    	modesStr := helper.GetAccessModesAsString(obj.Spec.AccessModes)
    	reclaimPolicyStr := string(obj.Spec.PersistentVolumeReclaimPolicy)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  2. pkg/apis/core/zz_generated.deepcopy.go

    	if in.AccessModes != nil {
    		in, out := &in.AccessModes, &out.AccessModes
    		*out = make([]PersistentVolumeAccessMode, len(*in))
    		copy(*out, *in)
    	}
    	if in.ClaimRef != nil {
    		in, out := &in.ClaimRef, &out.ClaimRef
    		*out = new(ObjectReference)
    		**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: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	if in.AccessModes != nil {
    		in, out := &in.AccessModes, &out.AccessModes
    		*out = make([]PersistentVolumeAccessMode, len(*in))
    		copy(*out, *in)
    	}
    	if in.ClaimRef != nil {
    		in, out := &in.ClaimRef, &out.ClaimRef
    		*out = new(ObjectReference)
    		**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: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	PersistentVolumeSource
    	// AccessModes contains all ways the volume can be mounted
    	// +optional
    	AccessModes []PersistentVolumeAccessMode
    	// ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim.
    	// ClaimRef is expected to be non-nil when bound.
    	// claim.VolumeName is the authoritative bind between PV and PVC.
    	// When set to non-nil value, PVC.Spec.Selector of the referenced PVC is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/zz_generated.conversion.go

    		return err
    	}
    	out.AccessModes = *(*[]core.PersistentVolumeAccessMode)(unsafe.Pointer(&in.AccessModes))
    	out.ClaimRef = (*core.ObjectReference)(unsafe.Pointer(in.ClaimRef))
    	out.PersistentVolumeReclaimPolicy = core.PersistentVolumeReclaimPolicy(in.PersistentVolumeReclaimPolicy)
    	out.StorageClassName = in.StorageClassName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// claimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim.
    	// Expected to be non-nil when bound.
    	// claim.VolumeName is the authoritative bind between PV and PVC.
    	// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#binding
    	// +optional
    	// +structType=granular
    	ClaimRef *ObjectReference `json:"claimRef,omitempty" protobuf:"bytes,4,opt,name=claimRef"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      // accessModes contains all ways the volume can be mounted.
      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes
      // +optional
      repeated string accessModes = 3;
    
      // claimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim.
      // Expected to be non-nil when bound.
      // claim.VolumeName is the authoritative bind between PV and PVC.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"accessModes":                   "accessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes",
    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. pkg/apis/core/validation/validation.go

    	allErrs := field.ErrorList{}
    
    	if validateInlinePersistentVolumeSpec {
    		if pvSpec.ClaimRef != nil {
    			allErrs = append(allErrs, field.Forbidden(fldPath.Child("claimRef"), "may not be specified in the context of inline volumes"))
    		}
    		if len(pvSpec.Capacity) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes
      // +optional
      // +listType=atomic
      repeated string accessModes = 3;
    
      // claimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim.
      // Expected to be non-nil when bound.
      // claim.VolumeName is the authoritative bind between PV and PVC.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top