Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for LastState (0.41 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Pod.yaml

        type: typeValue
      containerStatuses:
      - allocatedResources:
          allocatedResourcesKey: "0"
        containerID: containerIDValue
        image: imageValue
        imageID: imageIDValue
        lastState:
          running:
            startedAt: "2001-01-01T01:01:01Z"
          terminated:
            containerID: containerIDValue
            exitCode: 1
            finishedAt: "2006-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 32.3K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    		}
    		cID = lastState.Terminated.ContainerID
    
    	case running != nil:
    		cID = cStatus.ContainerID
    
    	case terminated != nil:
    		// in cases where the next container didn't start, terminated.ContainerID will be empty, so get logs from the lastState.Terminated.
    		if terminated.ContainerID == "" {
    			if lastState.Terminated != nil && lastState.Terminated.ContainerID != "" {
    				cID = lastState.Terminated.ContainerID
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/containerstatus.go

    	State                *ContainerStateApplyConfiguration       `json:"state,omitempty"`
    	LastTerminationState *ContainerStateApplyConfiguration       `json:"lastState,omitempty"`
    	Ready                *bool                                   `json:"ready,omitempty"`
    	RestartCount         *int32                                  `json:"restartCount,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// help debug container crashes and restarts. This field is not
    	// populated if the container is still running and RestartCount is 0.
    	// +optional
    	LastTerminationState ContainerState `json:"lastState,omitempty" protobuf:"bytes,3,opt,name=lastState"`
    	// Ready specifies whether the container is currently passing its readiness check.
    	// The value will change as readiness probes keep executing. If no readiness
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            },
            "imageID": {
              "description": "ImageID of the container's image.",
              "type": "string"
            },
            "lastState": {
              "$ref": "#/definitions/io.k8s.api.core.v1.ContainerState",
              "description": "Details about the container's last termination condition."
            },
            "name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

      // help debug container crashes and restarts. This field is not
      // populated if the container is still running and RestartCount is 0.
      // +optional
      optional ContainerState lastState = 3;
    
      // Ready specifies whether the container is currently passing its readiness check.
      // The value will change as readiness probes keep executing. If no readiness
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"state":              "State holds details about the container's current condition.",
    	"lastState":          "LastTerminationState holds the last termination state of the container to help debug container crashes and restarts. This field is not populated if the container is still running and RestartCount is 0.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // help debug container crashes and restarts. This field is not
      // populated if the container is still running and RestartCount is 0.
      // +optional
      optional ContainerState lastState = 3;
    
      // Ready specifies whether the container is currently passing its readiness check.
      // The value will change as readiness probes keep executing. If no readiness
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/api__v1_openapi.json

                "type": "string"
              },
              "lastState": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerState"
                  }
                ],
                "default": {},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

              "type": "string"
            },
            "lastState": {
              "$ref": "#/definitions/io.k8s.api.core.v1.ContainerState",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
Back to top