Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for ContainerStateRunning (0.36 sec)

  1. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *ContainerStateRunning) DeepCopyInto(out *ContainerStateRunning) {
    	*out = *in
    	in.StartedAt.DeepCopyInto(&out.StartedAt)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerStateRunning.
    func (in *ContainerStateRunning) DeepCopy() *ContainerStateRunning {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    			ContainerID: cid,
    		}
    		if oldStatus != nil {
    			status.VolumeMounts = oldStatus.VolumeMounts // immutable
    		}
    		switch {
    		case cs.State == kubecontainer.ContainerStateRunning:
    			status.State.Running = &v1.ContainerStateRunning{StartedAt: metav1.NewTime(cs.StartedAt)}
    		case cs.State == kubecontainer.ContainerStateCreated:
    			// containers that are created but not running are "waiting to be running"
    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/api/core/v1/generated.pb.go

    func (m *ContainerStateRunning) Reset()      { *m = ContainerStateRunning{} }
    func (*ContainerStateRunning) ProtoMessage() {}
    func (*ContainerStateRunning) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{34}
    }
    func (m *ContainerStateRunning) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// +optional
    	Reason string
    	// A human-readable message indicating details about why the container is in waiting state.
    	// +optional
    	Message string
    }
    
    // ContainerStateRunning represents the running state of a container
    type ContainerStateRunning struct {
    	// +optional
    	StartedAt metav1.Time
    }
    
    // ContainerStateTerminated represents the terminated state of a container
    type ContainerStateTerminated struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // Details about a running container
      // +optional
      optional ContainerStateRunning running = 2;
    
      // Details about a terminated container
      // +optional
      optional ContainerStateTerminated terminated = 3;
    }
    
    // ContainerStateRunning is a running state of a container.
    message ContainerStateRunning {
      // Time at which the container was last (re-)started
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    		FinishedAt string
    	}
    	var containers []container
    	klogV := klog.V(4)
    	klogVEnabled := klogV.Enabled()
    	for _, s := range podStatus.ContainerStatuses {
    		if s.State == kubecontainer.ContainerStateRunning {
    			runningContainers = append(runningContainers, s.ID.String())
    		}
    		if klogVEnabled {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// Message regarding why the container is not yet running.
    	// +optional
    	Message string `json:"message,omitempty" protobuf:"bytes,2,opt,name=message"`
    }
    
    // ContainerStateRunning is a running state of a container.
    type ContainerStateRunning struct {
    	// Time at which the container was last (re-)started
    	// +optional
    	StartedAt metav1.Time `json:"startedAt,omitempty" protobuf:"bytes,1,opt,name=startedAt"`
    }
    
    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. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_ContainerState
    }
    
    var map_ContainerStateRunning = map[string]string{
    	"":          "ContainerStateRunning is a running state of a container.",
    	"startedAt": "Time at which the container was last (re-)started",
    }
    
    func (ContainerStateRunning) SwaggerDoc() map[string]string {
    	return map_ContainerStateRunning
    }
    
    var map_ContainerStateTerminated = 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. api/openapi-spec/v3/api__v1_openapi.json

                ],
                "description": "Details about a waiting container"
              }
            },
            "type": "object"
          },
          "io.k8s.api.core.v1.ContainerStateRunning": {
            "description": "ContainerStateRunning is a running state of a container.",
            "properties": {
              "startedAt": {
                "allOf": [
                  {
    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. pkg/generated/openapi/zz_generated.openapi.go

    		"k8s.io/api/core/v1.ContainerState":                                                                     schema_k8sio_api_core_v1_ContainerState(ref),
    		"k8s.io/api/core/v1.ContainerStateRunning":                                                              schema_k8sio_api_core_v1_ContainerStateRunning(ref),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top