Commit fb19362e authored by k8s-merge-robot's avatar k8s-merge-robot Committed by GitHub

Merge pull request #25899 from yujuhong/ncri

Automatic merge from submit-queue Add a new container runtime interface This PR includes a proposal and a Go file to re-define the container runtime interface. This is based on the original doc: https://docs.google.com/document/d/1ietD5eavK0aTuMQTw6-21r67UU73_vqYSUIPFdA0J5Q/ The umbrella issues is #22964 /cc @kubernetes/sig-node
parents 739e3dd1 08dc6611
......@@ -233,6 +233,8 @@ const (
ContainerStateExited ContainerState = "exited"
// This unknown encompasses all the states that we currently don't care.
ContainerStateUnknown ContainerState = "unknown"
// Not in use yet.
ContainerStateCreated ContainerState = "created"
)
// Container provides the runtime information for a container, such as ID, hash,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment