Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Col1 (0.04 sec)

  1. pkg/volume/util/util_test.go

    						},
    					},
    					Volumes: []v1.Volume{
    						{
    							Name: "vol1",
    						},
    						{
    							Name: "vol2",
    						},
    						{
    							Name: "vol3",
    						},
    					},
    				},
    			},
    			expectedMounts: sets.New[string]("vol1", "vol2", "vol3"),
    			expectedSELinuxContexts: map[string][]*v1.SELinuxOptions{
    				"vol1": {
    					{
    						Type:  "initcontainer1_context_t",
    						Level: "s0:c3,c4",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/volume_manager_test.go

    	case v1.PersistentVolumeBlock:
    		pod.Spec.Containers[0].VolumeDevices = []v1.VolumeDevice{
    			{
    				Name:       "vol1",
    				DevicePath: "/dev/vol1",
    			},
    		}
    	case v1.PersistentVolumeFilesystem:
    		pod.Spec.Containers[0].VolumeMounts = []v1.VolumeMount{
    			{
    				Name:      "vol1",
    				MountPath: "/mnt/vol1",
    			},
    		}
    	default:
    		// The volume is not mounted nor mapped
    	}
    	pv := &v1.PersistentVolume{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top