Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ReadWriteMany (0.13 sec)

  1. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    		},
    		{
    			name:                    "RWX with plugin with SELinux with full context in pod and SELinuxMount feature disabled",
    			accessModes:             []v1.PersistentVolumeAccessMode{v1.ReadWriteMany},
    			newContainerSELinuxOpts: fullOpts,
    			pluginSupportsSELinux:   true,
    			expectedContext:         "", // RWX volumes don't support SELinux
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_mounter_test.go

    			fsType:     "",
    			setFsGroup: true,
    			fsGroup:    3000,
    		},
    		{
    			name: "fstype, fsgroup, RWM, ROM provided (should not apply fsgroup)",
    			accessModes: []corev1.PersistentVolumeAccessMode{
    				corev1.ReadWriteMany,
    				corev1.ReadOnlyMany,
    			},
    			fsType:     "ext4",
    			setFsGroup: true,
    			fsGroup:    3000,
    		},
    		{
    			name: "fstype, fsgroup, RWO, but readOnly (should not apply fsgroup)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/binder_test.go

    			initialClaims:   claimWithAccessMode([]v1.PersistentVolumeAccessMode{v1.ReadWriteMany}, newClaimArray("claim1-16", "uid1-16", "1Gi", "volume1-16", v1.ClaimPending, nil)),
    			expectedClaims:  claimWithAccessMode([]v1.PersistentVolumeAccessMode{v1.ReadWriteMany}, newClaimArray("claim1-16", "uid1-16", "1Gi", "volume1-16", v1.ClaimPending, nil)),
    			expectedEvents:  noevents,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	verifyNewDetacherCallCount(t, false /* expectZeroNewDetacherCallCount */, fakePlugin)
    	waitForDetachCallCount(t, 0 /* expectedDetachCallCount */, fakePlugin)
    }
    
    // Creates a volume with accessMode ReadWriteMany
    // Populates desiredStateOfWorld cache with two node/volume/pod tuples pointing to the created volume
    // Calls Run()
    // Verifies there are two attach calls and no detach calls.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
Back to top