-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Show information about the OCI container runtime #12121
Comments
In other news, https://github.com/opencontainers/runc/releases/tag/v1.0.0 https://github.com/opencontainers/runc/releases/tag/v1.0.0-rc1 Docker 20.10.8 was just released yesterday, including runc 1.0.1 and containerd 1.4.9 (that would be, on 2021-08-03) |
The Kubernetes project currently lacks enough contributors to adequately respond to all issues and PRs. This bot triages issues and PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues and PRs. This bot triages issues and PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle rotten |
/remove-lifecycle rotten |
There seems to some interest into which OCI container runtime (e.g. runc, crun)
that is being used by the CRI container runtime (e.g. docker, containerd, cri-o)
Maybe we should add a feature to the "cruntime" abstraction, to retreive this info ?
Then it could be displayed along with the other information, such as the version.
Currently we dump a hard-coded list, in
minikube version --components
Related to: #11747 #12027
There is a slight confusion in terminology, with "container runtime" (engine) vs "container runtime" (runtime):
https://developers.redhat.com/blog/2018/02/22/container-terminology-practical-introduction#h.6yt1ex5wfo55
But we could show the information about which is being used, at least in the log file (if not in the UI) ?
I'm not sure where this actually makes a difference, but since we already show "runc" (and soon "crun")...
docker info | grep "Default Runtime"
Default Runtime: runc
containerd config dump | grep "runtime "
runtime = "runc"
crio config | grep ^default_runtime
default_runtime = "runc"
The text was updated successfully, but these errors were encountered: