Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for expectedActions (0.12 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			}
    		}
    		if test.mutatePodFn != nil {
    			test.mutatePodFn(pod)
    		}
    		expectedActions := test.getExpectedPodActionsFn(pod, status)
    		actions := m.computePodActions(ctx, pod, status)
    		verifyActions(t, expectedActions, &actions, desc)
    	}
    }
    
    func TestUpdatePodContainerResources(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  2. pkg/kubelet/network/dns/dns_test.go

    		existingDNSConfigOptions []string
    		dnsConfigOptions         []v1.PodDNSConfigOption
    		expectedOptions          []string
    	}{
    		{
    			desc:                     "Empty dnsConfigOptions",
    			existingDNSConfigOptions: []string{"ndots:5", "debug"},
    			dnsConfigOptions:         nil,
    			expectedOptions:          []string{"ndots:5", "debug"},
    		},
    		{
    			desc:                     "No duplicated entries",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top