Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ReadWriteOncePod (0.32 sec)

  1. pkg/apis/core/v1/helper/helpers.go

    	if ContainsAccessMode(modes, v1.ReadOnlyMany) {
    		modesStr = append(modesStr, "ROX")
    	}
    	if ContainsAccessMode(modes, v1.ReadWriteMany) {
    		modesStr = append(modesStr, "RWX")
    	}
    	if ContainsAccessMode(modes, v1.ReadWriteOncePod) {
    		modesStr = append(modesStr, "RWOP")
    	}
    	return strings.Join(modesStr, ",")
    }
    
    // GetAccessModesFromString returns an array of AccessModes from a string created by GetAccessModesAsString
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/helper/helpers_test.go

    	}
    	if !ContainsAccessMode(modes, v1.ReadWriteMany) {
    		t.Errorf("Expected mode %s, but got %+v", v1.ReadWriteMany, modes)
    	}
    	if !ContainsAccessMode(modes, v1.ReadWriteOncePod) {
    		t.Errorf("Expected mode %s, but got %+v", v1.ReadWriteOncePod, modes)
    	}
    }
    
    func TestRemoveDuplicateAccessModes(t *testing.T) {
    	modes := []v1.PersistentVolumeAccessMode{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    	// - either the context+label is unknown (assigned randomly by the container runtime)
    	// - or the volume plugin responsible for this volume does not support mounting with -o context
    	// - or the volume is not ReadWriteOncePod
    	// - or the OS does not support SELinux
    	// In all cases, the SELinux context does not matter when mounting the volume.
    	effectiveSELinuxMountFileLabel string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/generated/openapi/zz_generated.openapi.go

    									SchemaProps: spec.SchemaProps{
    										Default: "",
    										Type:    []string{"string"},
    										Format:  "",
    										Enum:    []interface{}{"ReadOnlyMany", "ReadWriteMany", "ReadWriteOnce", "ReadWriteOncePod"},
    									},
    								},
    							},
    						},
    					},
    					"selector": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  8. api/openapi-spec/swagger.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: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top