Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 51 for restartCount (0.22 sec)

  1. pkg/printers/internalversion/printers_test.go

    				Status: api.PodStatus{
    					Phase: "podPhase",
    					ContainerStatuses: []api.ContainerStatus{
    						{Ready: true, RestartCount: 3, State: api.ContainerState{Running: &api.ContainerStateRunning{}}},
    						{RestartCount: 3},
    					},
    				},
    			},
    			[]metav1.TableRow{{Cells: []interface{}{"test1", "1/2", "podPhase", "6", "<unknown>"}}},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. plugin/pkg/admission/security/podsecurity/testdata/pod_restricted.yaml

        image: image-name:tag-name
        imageID: imageid@sha256:8e2a7eaa7e6b1ede58d6361d0058a391260a46f0290b7f0368b709494e9e36bf
        lastState: {}
        name: dnsmasq
        ready: true
        restartCount: 0
        started: true
        state:
          running:
            startedAt: "2021-08-20T14:36:03Z"
      - containerID: containerd://bf3db3f330364ba2af3763a3c0b0bcd137f0556a73fffd0e0dbda61035b696a9
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.3K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		return msg, err
    	}
    
    	// Step 2: create the container.
    	// For a new container, the RestartCount should be 0
    	restartCount := 0
    	containerStatus := podStatus.FindContainerStatusByName(container.Name)
    	if containerStatus != nil {
    		restartCount = containerStatus.RestartCount + 1
    	} else {
    		// The container runtime keeps state on container statuses and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  4. plugin/pkg/admission/security/podsecurity/testdata/pod_baseline.yaml

        image: image-name:tag-name
        imageID: imageid@sha256:8e2a7eaa7e6b1ede58d6361d0058a391260a46f0290b7f0368b709494e9e36bf
        lastState: {}
        name: dnsmasq
        ready: true
        restartCount: 0
        started: true
        state:
          running:
            startedAt: "2021-08-20T14:36:03Z"
      - containerID: containerd://bf3db3f330364ba2af3763a3c0b0bcd137f0556a73fffd0e0dbda61035b696a9
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.1K bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/pod.yaml

            exitCode: 255
            finishedAt: '2019-07-08T09:39:09Z'
            reason: Error
            startedAt: '2019-07-08T09:38:54Z'
        name: name
        ready: true
        restartCount: 6
        state:
          running:
            startedAt: '2019-07-08T09:41:59Z'
      hostIP: 10.0.0.1
      phase: Running
      podIP: 10.0.0.1
      qosClass: BestEffort
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/pod.yaml

            exitCode: 255
            finishedAt: '2019-07-08T09:39:09Z'
            reason: Error
            startedAt: '2019-07-08T09:38:54Z'
        name: name
        ready: true
        restartCount: 6
        state:
          running:
            startedAt: '2019-07-08T09:41:59Z'
      hostIP: 10.0.0.1
      phase: Running
      podIP: 10.0.0.1
      qosClass: BestEffort
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 25 19:51:58 UTC 2019
    - 2.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/testdata/pod.json

                    "lastState": {},
                    "name": "nginx",
                    "ready": true,
                    "restartCount": 0,
                    "started": true,
                    "state": {
                        "running": {
                            "startedAt": "2021-02-18T09:46:19Z"
                        }
                    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 18 15:31:52 UTC 2021
    - 6.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top