Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for ReadWriteOncePod (0.23 sec)

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

    		}
    
    		if mode == core.ReadWriteOncePod {
    			foundReadWriteOncePod = true
    		} else if supportedAccessModes.Has(mode) {
    			foundNonReadWriteOncePod = true
    		}
    	}
    	if foundReadWriteOncePod && foundNonReadWriteOncePod {
    		allErrs = append(allErrs, field.Forbidden(fldPath.Child("accessModes"), "may not use ReadWriteOncePod with other access modes"))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (1)
  2. CHANGELOG/CHANGELOG-1.22.md

      (`--seccomp-default`) to `true`. ([#101943](https://github.com/kubernetes/kubernetes/pull/101943), [@saschagrunert](https://github.com/saschagrunert)) [SIG Node]
    - Adds the `ReadWriteOncePod` access mode for `PersistentVolumes` and `PersistentVolumeClaims`. Restricts volume access to a single pod on a single node. ([#102028](https://github.com/kubernetes/kubernetes/pull/102028), [@chrishenzie](https://github.com/chrishenzie))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.27.md

    - Added scheduler preemption support for pods using `ReadWriteOncePod` PVCs ([#114051](https://github.com/kubernetes/kubernetes/pull/114051), [@chrishenzie](https://github.com/chrishenzie))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	ReadWriteMany PersistentVolumeAccessMode = "ReadWriteMany"
    	// can be mounted read/write mode to exactly 1 pod
    	// cannot be used in combination with other access modes
    	ReadWriteOncePod PersistentVolumeAccessMode = "ReadWriteOncePod"
    )
    
    // PersistentVolumePhase defines the phase in which a PV is
    type PersistentVolumePhase string
    
    // These are the valid values for PersistentVolumePhase
    const (
    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. CHANGELOG/CHANGELOG-1.29.md

    - Graduated API List chunking (aka pagination) feature to `stable`. ([#119503](https://github.com/kubernetes/kubernetes/pull/119503), [@wojtek-t](https://github.com/wojtek-t))
    - Graduated the `ReadWriteOncePod` feature gate to `GA`. ([#121077](https://github.com/kubernetes/kubernetes/pull/121077), [@chrishenzie](https://github.com/chrishenzie))
    - Graduated the following kubelet resource metrics to **general availability**:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	ReadWriteMany PersistentVolumeAccessMode = "ReadWriteMany"
    	// can be mounted in read/write mode to exactly 1 pod
    	// cannot be used in combination with other access modes
    	ReadWriteOncePod PersistentVolumeAccessMode = "ReadWriteOncePod"
    )
    
    // +enum
    type PersistentVolumePhase string
    
    const (
    	// used for PersistentVolumes that are not available
    	VolumePending PersistentVolumePhase = "Pending"
    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. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

    `-o context` options. This is typical for storage backends that provide volumes as filesystems on block devices or as independent shared volumes. Kubernetes will call NodeStage / NodePublish with \"-o context=xyz\" mount option when mounting a ReadWriteOncePod volume used in Pod that has explicitly set SELinux context. In the future, it may be expanded to other volume AccessModes. In any case, Kubernetes will ensure that the volume is mounted only with a single SELinux context.\n\nWhen \"false\", Kubernetes...
    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