Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for accessmodes (0.35 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. common-protos/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
      repeated string accessModes = 1;
    
      // selector is a label query over volumes to consider for binding.
      // +optional
    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

    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)
  6. 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)
  7. 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)
  8. CHANGELOG/CHANGELOG-1.7.md

      * Fix dynamic provisioning of PVs with inaccurate AccessModes by refusing to provision when PVCs ask for AccessModes that can't be satisfied by the PVs' underlying volume plugin. ([#47274](https://github.com/kubernetes/kubernetes/pull/47274), [@wongma7](https://github.com/wongma7))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

          },
          "io.k8s.api.core.v1.PersistentVolumeSpec": {
            "description": "PersistentVolumeSpec is the specification of a persistent volume.",
            "properties": {
              "accessModes": {
                "description": "accessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes",
                "items": {
                  "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.8.md

    * Azure plugin for client auth ([#43987](https://github.com/kubernetes/kubernetes/pull/43987), [@cosmincojocar](https://github.com/cosmincojocar))
    * Fix dynamic provisioning of PVs with inaccurate AccessModes by refusing to provision when PVCs ask for AccessModes that can't be satisfied by the PVs' underlying volume plugin ([#47274](https://github.com/kubernetes/kubernetes/pull/47274), [@wongma7](https://github.com/wongma7))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
Back to top