Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for restartCount (0.29 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/controller/controller_utils.go

    			}
    		}
    	}
    	return &metav1.Time{}
    }
    
    func maxContainerRestarts(pod *v1.Pod) int {
    	maxRestarts := 0
    	for _, c := range pod.Status.ContainerStatuses {
    		maxRestarts = max(maxRestarts, int(c.RestartCount))
    	}
    	return maxRestarts
    }
    
    // FilterActivePods returns pods that have not terminated.
    func FilterActivePods(logger klog.Logger, pods []*v1.Pod) []*v1.Pod {
    	var result []*v1.Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// RestartCount holds the number of times the container has been restarted.
    	// Kubelet makes an effort to always increment the value, but there
    	// are cases when the state may be lost due to node restarts and then the value
    	// may be reset to 0. The value is never negative.
    	RestartCount int32 `json:"restartCount" protobuf:"varint,5,opt,name=restartCount"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      // accept traffic.
      optional bool ready = 4;
    
      // RestartCount holds the number of times the container has been restarted.
      // Kubelet makes an effort to always increment the value, but there
      // are cases when the state may be lost due to node restarts and then the value
      // may be reset to 0. The value is never negative.
      optional int32 restartCount = 5;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	// accept traffic.
    	Ready bool
    	// RestartCount holds the number of times the container has been restarted.
    	// Kubelet makes an effort to always increment the value, but there
    	// are cases when the state may be lost due to node restarts and then the value
    	// may be reset to 0. The value is never negative.
    	RestartCount int32
    	// Image is the name of container image that the container is running.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"restartCount":       "RestartCount holds the number of times the container has been restarted. Kubelet makes an effort to always increment the value, but there are cases when the state may be lost due to node restarts and then the value may be reset to 0. The value is never negative.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top