Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for failedPos (0.22 sec)

  1. pkg/controller/job/job_controller_test.go

    		// This means that there is no status update so the counters for
    		// failedPods and succeededPods cannot be incremented.
    		podControllerError        error
    		pendingPods               int
    		activePods                int
    		readyPods                 int
    		succeededPods             int
    		failedPods                int
    		terminatingPods           int
    		podsWithIndexes           []indexPhase
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    	emptyPod := podWithUIDNameNsSpec("2", "emptypod", "foo", emptyPodSpec)
    	missingPod := podWithUIDNameNsSpec("3", "missingpod", "foo", missingPodSpec)
    	failedPod := podWithUIDNameNsSpec("4", "failedpod", "foo", failedPodSpec)
    
    	kl.HandlePodAdditions([]*v1.Pod{fittingPod, emptyPod, missingPod, failedPod})
    
    	// Check pod status stored in the status map.
    	checkPodStatus(t, kl, fittingPod, v1.PodPending)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers_test.go

    			ContainerStatuses: []api.ContainerStatus{
    				{Ready: true, RestartCount: 3, State: api.ContainerState{Running: &api.ContainerStateRunning{}}},
    				{RestartCount: 3},
    			},
    		},
    	}
    	failedPod := &api.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "test2", Labels: map[string]string{"b": "2"}},
    		Spec:       api.PodSpec{Containers: make([]api.Container, 2)},
    		Status: api.PodStatus{
    			Phase: "Failed",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top