Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for restartCount (0.32 sec)

  1. pkg/controller/controller_utils_test.go

    					Status: v1.PodStatus{
    						Phase:             v1.PodRunning,
    						Conditions:        []v1.PodCondition{{Type: v1.PodReady, Status: v1.ConditionTrue}},
    						ContainerStatuses: []v1.ContainerStatus{{RestartCount: 3}, {RestartCount: 0}},
    					},
    				},
    				{
    					ObjectMeta: metav1.ObjectMeta{Name: "runningWithLastTransitionTime"},
    					Spec:       v1.PodSpec{NodeName: "foo"},
    					Status: v1.PodStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.json

                "startedAt": "2005-01-01T01:01:01Z",
                "finishedAt": "2006-01-01T01:01:01Z",
                "containerID": "containerIDValue"
              }
            },
            "ready": true,
            "restartCount": 5,
            "image": "imageValue",
            "imageID": "imageIDValue",
            "containerID": "containerIDValue",
            "started": true,
            "allocatedResources": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 52K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/helpers.go

    const logPathDelimiter = "_"
    
    // buildContainerLogsPath builds log path for container relative to pod logs directory.
    func buildContainerLogsPath(containerName string, restartCount int) string {
    	return filepath.Join(containerName, fmt.Sprintf("%d.log", restartCount))
    }
    
    // BuildContainerLogsDirectory builds absolute log directory path for a container in pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.yaml

        name: nameValue
        ready: true
        resources:
          claims:
          - name: nameValue
          limits:
            limitsKey: "0"
          requests:
            requestsKey: "0"
        restartCount: 5
        started: true
        state:
          running:
            startedAt: "2001-01-01T01:01:01Z"
          terminated:
            containerID: containerIDValue
            exitCode: 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.yaml

        name: nameValue
        ready: true
        resources:
          claims:
          - name: nameValue
          limits:
            limitsKey: "0"
          requests:
            requestsKey: "0"
        restartCount: 5
        started: true
        state:
          running:
            startedAt: "2001-01-01T01:01:01Z"
          terminated:
            containerID: containerIDValue
            exitCode: 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json

                "startedAt": "2005-01-01T01:01:01Z",
                "finishedAt": "2006-01-01T01:01:01Z",
                "containerID": "containerIDValue"
              }
            },
            "ready": true,
            "restartCount": 5,
            "image": "imageValue",
            "imageID": "imageIDValue",
            "containerID": "containerIDValue",
            "started": true,
            "allocatedResources": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top