Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for ReadWriteOncePod (0.22 sec)

  1. staging/src/k8s.io/api/storage/v1beta1/types.go

    	// 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1/types.go

    	// 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  3. pkg/features/kube_features.go

    	// alpha: v1.25
    	// beta: v1.27
    	// Speed up container startup by mounting volumes with the correct SELinux label
    	// instead of changing each file on the volumes recursively.
    	// Initial implementation focused on ReadWriteOncePod volumes.
    	SELinuxMountReadWriteOncePod featuregate.Feature = "SELinuxMountReadWriteOncePod"
    
    	// owner: @vinaykul
    	// kep: http://kep.k8s.io/1287
    	// alpha: v1.27
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. 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)
  5. pkg/apis/core/validation/validation_test.go

    				Capacity: core.ResourceList{
    					core.ResourceName(core.ResourceStorage): resource.MustParse("10G"),
    				},
    				AccessModes: []core.PersistentVolumeAccessMode{"ReadWriteOncePod"},
    				PersistentVolumeSource: core.PersistentVolumeSource{
    					HostPath: &core.HostPathVolumeSource{
    						Path: "/foo",
    						Type: newHostPathType(string(core.HostPathDirectory)),
    					},
    				},
    			}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top