Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fakePodName (0.14 sec)

  1. pkg/kubelet/cm/cpumanager/cpu_manager_test.go

    	}{
    		{
    			description: "cpu manager reconcile - no error",
    			policy:      testPolicy,
    			activePods: []*v1.Pod{
    				{
    					ObjectMeta: metav1.ObjectMeta{
    						Name: "fakePodName",
    						UID:  "fakePodUID",
    					},
    					Spec: v1.PodSpec{
    						Containers: []v1.Container{
    							{
    								Name: "fakeContainerName",
    							},
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_linux_test.go

    			fsp := &subpath.FakeSubpath{}
    			pod := v1.Pod{
    				Spec: v1.PodSpec{
    					HostNetwork: true,
    				},
    			}
    
    			mounts, _, err := makeMounts(&pod, "/pod", &tc.container, "fakepodname", "", []string{""}, tc.podVolumes, fhu, fsp, nil, tc.supportsRRO)
    
    			// validate only the error if we expect an error
    			if tc.expectErr {
    				if err == nil || err.Error() != tc.expectedErrMsg {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 18:00:59 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top