Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for accessmodes (0.19 sec)

  1. pkg/apis/core/validation/validation.go

    		}
    	}
    
    	if len(pvSpec.AccessModes) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("accessModes"), ""))
    	}
    
    	foundReadWriteOncePod, foundNonReadWriteOncePod := false, false
    	for _, mode := range pvSpec.AccessModes {
    		if !supportedAccessModes.Has(mode) {
    			allErrs = append(allErrs, field.NotSupported(fldPath.Child("accessModes"), mode, sets.List(supportedAccessModes)))
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_PersistentVolumeClaimSpec_To_core_PersistentVolumeClaimSpec(in *v1.PersistentVolumeClaimSpec, out *core.PersistentVolumeClaimSpec, s conversion.Scope) error {
    	out.AccessModes = *(*[]core.PersistentVolumeAccessMode)(unsafe.Pointer(&in.AccessModes))
    	out.Selector = (*metav1.LabelSelector)(unsafe.Pointer(in.Selector))
    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. staging/src/k8s.io/api/core/v1/types.go

    	// accessModes contains all ways the volume can be mounted.
    	// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes
    	// +optional
    	// +listType=atomic
    	AccessModes []PersistentVolumeAccessMode `json:"accessModes,omitempty" protobuf:"bytes,3,rep,name=accessModes,casttype=PersistentVolumeAccessMode"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    var map_PersistentVolumeClaimSpec = map[string]string{
    	"":                          "PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes",
    	"accessModes":               "accessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

    // and allows a Source for provider-specific attributes
    message PersistentVolumeClaimSpec {
      // accessModes contains the desired access modes the volume should have.
      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1
      // +optional
      // +listType=atomic
      repeated string accessModes = 1;
    
      // selector is a label query over volumes to consider for binding.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    	// Resources represents the actual resources of the volume
    	Capacity ResourceList
    	// Source represents the location and type of a volume to mount.
    	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.
    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. api/openapi-spec/v3/apis__batch__v1_openapi.json

            "description": "PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes",
            "properties": {
              "accessModes": {
                "description": "accessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1",
                "items": {
                  "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.30.md

    - Added kubelet metrics to track the memory manager allocation and pinning. ([#121778](https://github.com/kubernetes/kubernetes/pull/121778), [@Tal-or](https://github.com/Tal-or))
    - Added the `access_mode` label to `volume_manager_selinux_*` metrics. ([#123667](https://github.com/kubernetes/kubernetes/pull/123667), [@jsafrane](https://github.com/jsafrane))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top