Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for volumeName (0.3 sec)

  1. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	Resources VolumeResourceRequirements `json:"resources,omitempty" protobuf:"bytes,2,opt,name=resources"`
    	// volumeName is the binding reference to the PersistentVolume backing this claim.
    	// +optional
    	VolumeName string `json:"volumeName,omitempty" protobuf:"bytes,3,opt,name=volumeName"`
    	// storageClassName is the name of the StorageClass required by the claim.
    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/apis/core/v1/zz_generated.conversion.go

    	if err := Convert_v1_VolumeResourceRequirements_To_core_VolumeResourceRequirements(&in.Resources, &out.Resources, s); err != nil {
    		return err
    	}
    	out.VolumeName = in.VolumeName
    	out.StorageClassName = (*string)(unsafe.Pointer(in.StorageClassName))
    	out.VolumeMode = (*core.PersistentVolumeMode)(unsafe.Pointer(in.VolumeMode))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    	oldPvcClone := oldPvc.DeepCopy()
    
    	// PVController needs to update PVC.Spec w/ VolumeName.
    	// Claims are immutable in order to enforce quota, range limits, etc. without gaming the system.
    	if len(oldPvc.Spec.VolumeName) == 0 {
    		// volumeName changes are allowed once.
    		oldPvcClone.Spec.VolumeName = newPvcClone.Spec.VolumeName // +k8s:verify-mutation:reason=clone
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources
      // +optional
      optional ResourceRequirements resources = 2;
    
      // volumeName is the binding reference to the PersistentVolume backing this claim.
      // +optional
      optional string volumeName = 3;
    
      // storageClassName is the name of the StorageClass required by the claim.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"volumeName":                "volumeName is the binding reference to the PersistentVolume backing this claim.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    	// status field of the claim.
    	// +optional
    	Resources VolumeResourceRequirements
    	// VolumeName is the binding reference to the PersistentVolume backing this
    	// claim. When set to non-empty value Selector is not evaluated
    	// +optional
    	VolumeName string
    	// Name of the StorageClass required by the claim.
    	// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#class-1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional VolumeResourceRequirements resources = 2;
    
      // volumeName is the binding reference to the PersistentVolume backing this claim.
      // +optional
      optional string volumeName = 3;
    
      // storageClassName is the name of the StorageClass required by the claim.
    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. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "volumeName": {
                "description": "volumeName is the binding reference to the PersistentVolume backing this claim.",
                "type": "string"
              }
            },
            "type": "object"
          },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "default": "",
                "description": "system is the name of the storage system as configured in ScaleIO.",
                "type": "string"
              },
              "volumeName": {
                "description": "volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source.",
                "type": "string"
              }
            },
            "required": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
Back to top