Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for restartCount (0.36 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    	ctx := context.Background()
    	container := &pod.Spec.Containers[containerIndex]
    	podIP := ""
    	restartCount := 0
    	opts, _, _ := m.runtimeHelper.GenerateRunContainerOptions(ctx, pod, container, podIP, []string{podIP})
    	containerLogsPath := buildContainerLogsPath(container.Name, restartCount)
    	restartCountUint32 := uint32(restartCount)
    	envs := make([]*runtimeapi.KeyValue, len(opts.Envs))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/storage/storage_test.go

    			Phase:  api.PodPending,
    			ContainerStatuses: []api.ContainerStatus{
    				{Name: "ctr1", State: api.ContainerState{Running: &api.ContainerStateRunning{}}, RestartCount: 10, Ready: true},
    				{Name: "ctr2", State: api.ContainerState{Waiting: &api.ContainerStateWaiting{}}, RestartCount: 0},
    			},
    			NominatedNodeName: "nominated-node",
    		},
    	}
    
    	multiIPsPod := &api.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 07:18:44 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    			// unless there is a major API violation
    			restartCount++
    		}
    	}
    	metrics.RestartedPodTotal.WithLabelValues("true").Add(float64(restartCountStatic))
    	metrics.RestartedPodTotal.WithLabelValues("").Add(float64(restartCount))
    
    	// Complete termination of deleted pods that are not runtime pods (don't have
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/cluster/cluster.go

    		podItem = r.CniPod[PodKey(namespace, pod)]
    	} else {
    		podItem = r.Pod[PodKey(namespace, pod)]
    	}
    	for _, cs := range podItem.Status.ContainerStatuses {
    		if cs.Name == container {
    			return int(cs.RestartCount)
    		}
    	}
    	return 0
    }
    
    // IsDiscoveryContainer reports whether the given container is the Istio discovery container.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 14 02:11:31 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  5. pkg/test/kube/dump.go

    func containerRestarts(pod corev1.Pod, container string) int {
    	for _, cs := range pod.Status.ContainerStatuses {
    		if cs.Name == container {
    			return int(cs.RestartCount)
    		}
    	}
    	// No match - assume that means no restart
    	return 0
    }
    
    func containerCrashed(pod corev1.Pod, container string) (bool, *corev1.ContainerStateTerminated) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  6. pkg/kubelet/container/runtime.go

    	// Runtime handler used to pull the image if any.
    	ImageRuntimeHandler string
    	// Hash of the container, used for comparison.
    	Hash uint64
    	// Number of times that the container has been restarted.
    	RestartCount int
    	// A string explains why container is in such a status.
    	Reason string
    	// Message written by the container before exiting (stored in
    	// TerminationMessagePath).
    	Message string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers.go

    			totalContainers++
    		}
    	}
    
    	initializing := false
    	for i := range pod.Status.InitContainerStatuses {
    		container := pod.Status.InitContainerStatuses[i]
    		restarts += int(container.RestartCount)
    		if container.LastTerminationState.Terminated != nil {
    			terminatedDate := container.LastTerminationState.Terminated.FinishedAt
    			if lastRestartDate.Before(&terminatedDate) {
    				lastRestartDate = terminatedDate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller.go

    			for j := range po.Status.InitContainerStatuses {
    				stat := po.Status.InitContainerStatuses[j]
    				result += stat.RestartCount
    			}
    			for j := range po.Status.ContainerStatuses {
    				stat := po.Status.ContainerStatuses[j]
    				result += stat.RestartCount
    			}
    		}
    	}
    	if *job.Spec.BackoffLimit == 0 {
    		return result > 0
    	}
    	return result >= *job.Spec.BackoffLimit
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller_test.go

    			podIndexer := sharedInformerFactory.Core().V1().Pods().Informer().GetIndexer()
    			for i, pod := range newPodList(len(tc.restartCounts), tc.podPhase, job) {
    				pod.Status.ContainerStatuses = []v1.ContainerStatus{{RestartCount: tc.restartCounts[i]}}
    				podIndexer.Add(pod)
    			}
    
    			// run
    			err := manager.syncJob(context.TODO(), testutil.GetKey(job, t))
    
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods_test.go

    				Reason:   kubecontainer.ContainerReasonStatusUnknown,
    				Message:  "The container could not be located when the pod was deleted.  The container used to be Running",
    				ExitCode: 137,
    			},
    		},
    		RestartCount: restartCount,
    	}
    }
    func ready(status v1.ContainerStatus) v1.ContainerStatus {
    	status.Ready = true
    	return status
    }
    func withID(status v1.ContainerStatus, id string) v1.ContainerStatus {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top