Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ContainerStateRunning (0.26 sec)

  1. pkg/printers/internalversion/printers_test.go

    						{
    							Ready:        true,
    							RestartCount: 0,
    							State:        api.ContainerState{Running: &api.ContainerStateRunning{}},
    						},
    						{
    							Ready:                true,
    							RestartCount:         3,
    							State:                api.ContainerState{Running: &api.ContainerStateRunning{}},
    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. pkg/kubelet/kubelet_pods_test.go

    	return v1.ContainerStatus{
    		Name: cName,
    		State: v1.ContainerState{
    			Running: &v1.ContainerStateRunning{},
    		},
    	}
    }
    func startedState(cName string) v1.ContainerStatus {
    	started := true
    	return v1.ContainerStatus{
    		Name: cName,
    		State: v1.ContainerState{
    			Running: &v1.ContainerStateRunning{},
    		},
    		Started: &started,
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_test.go

    					State: kubecontainer.ContainerStateUnknown,
    				},
    				{
    					Name:  "unknown",
    					State: kubecontainer.ContainerStateRunning,
    				},
    			},
    			reasons: map[string]error{},
    			oldStatuses: []v1.ContainerStatus{{
    				Name:  "unknown",
    				State: v1.ContainerState{Running: &v1.ContainerStateRunning{}},
    			}},
    			expectedState: map[string]v1.ContainerState{
    				"unknown": {Terminated: &v1.ContainerStateTerminated{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  4. pkg/apis/core/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.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
Back to top