Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for ContainerStateRunning (0.39 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/apimachinery/pkg/util/managedfields/internal/testdata/swagger.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": {
              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  4. 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)
  5. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. 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)
  7. pkg/kubelet/pod_workers.go

    		return false
    	}
    
    	return true
    }
    
    func isPodStatusCacheTerminal(status *kubecontainer.PodStatus) bool {
    	for _, container := range status.ContainerStatuses {
    		if container.State == kubecontainer.ContainerStateRunning {
    			return false
    		}
    	}
    	for _, sb := range status.SandboxStatuses {
    		if sb.State == runtimeapi.PodSandboxState_SANDBOX_READY {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top