Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for CONTAINER_ID (0.29 sec)

  1. docs/docker/README.md

    ```sh
    docker start <container_id>
    ```
    
    To stop a running container, you can use the [`docker stop`](https://docs.docker.com/engine/reference/commandline/stop/) command.
    
    ```sh
    docker stop <container_id>
    ```
    
    ### MinIO container logs
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  2. pkg/kubelet/prober/common_test.go

    	"k8s.io/kubernetes/pkg/probe"
    	"k8s.io/utils/exec"
    )
    
    const (
    	testContainerName = "cOnTaInEr_NaMe"
    	testPodUID        = "pOd_UiD"
    )
    
    var testContainerID = kubecontainer.ContainerID{Type: "test", ID: "cOnTaInEr_Id"}
    
    func getTestRunningStatus() v1.PodStatus {
    	return getTestRunningStatusWithStarted(true)
    }
    
    func getTestRunningStatusWithStarted(started bool) v1.PodStatus {
    	containerStatus := v1.ContainerStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 16:57:26 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. cluster/addons/fluentd-gcp/fluentd-gcp-configmap-old.yaml

          path /var/log/containers/*.log
          pos_file /var/log/gcp-containers.log.pos
          # Tags at this point are in the format of:
          # reform.var.log.containers.<POD_NAME>_<NAMESPACE_NAME>_<CONTAINER_NAME>-<CONTAINER_ID>.log
          tag reform.*
          read_from_head true
          <parse>
            @type multi_format
            <pattern>
              format json
              time_key time
              time_format %Y-%m-%dT%H:%M:%S.%NZ
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 16.3K bytes
    - Viewed (0)
  4. cluster/addons/fluentd-gcp/fluentd-gcp-configmap.yaml

          path /var/log/containers/*.log
          pos_file /var/log/gcp-containers.log.pos
          # Tags at this point are in the format of:
          # reform.var.log.containers.<POD_NAME>_<NAMESPACE_NAME>_<CONTAINER_NAME>-<CONTAINER_ID>.log
          tag reform.*
          read_from_head true
          <parse>
            @type multi_format
            <pattern>
              format json
              time_key time
              time_format %Y-%m-%dT%H:%M:%S.%NZ
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 18.3K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

    <source>
      @type tail
      path /var/log/containers/*.log
      pos_file /var/log/gcp-containers.log.pos
      # Tags at this point are in the format of:
      # reform.var.log.containers.<POD_NAME>_<NAMESPACE_NAME>_<CONTAINER_NAME>-<CONTAINER_ID>.log
      tag reform.*
      read_from_head true
      <parse>
        @type multi_format
        <pattern>
          format json
          time_key time
          time_format %Y-%m-%dT%H:%M:%S.%NZ
          keep_time_key
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "description": "ContainerStateTerminated is a terminated state of a container.",
          "properties": {
            "containerID": {
              "description": "Container's ID in the format 'docker://<container_id>'",
              "type": "string"
            },
            "exitCode": {
              "description": "Exit status from the last termination of the container",
              "format": "int32",
              "type": "integer"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      // Time at which the container last terminated
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time finishedAt = 6;
    
      // Container's ID in the format '<type>://<container_id>'
      // +optional
      optional string containerID = 7;
    }
    
    // ContainerStateWaiting is a waiting state of a container.
    message ContainerStateWaiting {
      // (brief) reason the container is not yet running.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"startedAt":   "Time at which previous execution of the container started",
    	"finishedAt":  "Time at which the container last terminated",
    	"containerID": "Container's ID in the format '<type>://<container_id>'",
    }
    
    func (ContainerStateTerminated) SwaggerDoc() map[string]string {
    	return map_ContainerStateTerminated
    }
    
    var map_ContainerStateWaiting = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // Time at which the container last terminated
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time finishedAt = 6;
    
      // Container's ID in the format '<type>://<container_id>'
      // +optional
      optional string containerID = 7;
    }
    
    // ContainerStateWaiting is a waiting state of a container.
    message ContainerStateWaiting {
      // (brief) reason the container is not yet running.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    	// Time at which the container last terminated
    	// +optional
    	FinishedAt metav1.Time `json:"finishedAt,omitempty" protobuf:"bytes,6,opt,name=finishedAt"`
    	// Container's ID in the format '<type>://<container_id>'
    	// +optional
    	ContainerID string `json:"containerID,omitempty" protobuf:"bytes,7,opt,name=containerID"`
    }
    
    // ContainerState holds a possible state of container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top