Docker is a very popular container technology. There have been many articles saying that it has been abandoned by K8S and replaced by another container technology, containerd! In fact, containerd is just the underlying container runtime separated from Docker, and its use is no different from Docker. This article mainly introduces the use of containerd, and I hope it will be helpful to everyone! Introduction to containerdContainerd is an industry-standard container runtime that emphasizes simplicity, robustness, and portability. Containerd can manage the complete container lifecycle in the host, including the transmission and storage of container images, the execution and management of containers, storage, and networking. Docker vs containerdContainerd is a project separated from Docker that can be used as a low-level container runtime. Now it has become a better choice for Kubernetes container runtime. Not only Docker, but many cloud platforms also support containerd as the underlying container runtime. Please refer to the figure below for details. ![]() K8S CRI K8S released CRI (Container Runtime Interface), which unified the container runtime interface. Any container runtime that supports CRI can be used as the underlying container runtime of K8S. Why does K8S abandon Docker as the container runtime and use containerd? If you use Docker as the K8S container runtime, kubelet needs to call Docker through ![]() If you use containerd as the K8S container runtime, kubelet can call containerd directly because containerd has a built-in ![]() Using containerd not only improves performance (the call chain becomes shorter), but also reduces resource usage (Docker is not a pure container runtime and has a lot of other features). Use of containerdIf you have used Docker before, you can learn containerd in just 5 minutes. Next, let’s learn how to use containerd.
CONTAINER IMAGE CREATED STATE NAME ATTEMPT POD ID 4ca73ded41bb6 3b0b04aa3473f Less than a second ago Running helm 20 21103f0058872 3bb5767a81954 296a6d5035e2d About a minute ago Running coredns 1 af887263bd869 a5e34c24be371 0346349a1a640 About a minute ago Running nginx 1 89defc6008501 View all images;
IMAGE TAG IMAGE ID SIZE docker.io/library/nginx 1.10 0346349a1a640 71.4MB docker.io/rancher/coredns-coredns 1.8.0 296a6d5035e2d 12.9MB docker.io/rancher/klipper-helm v0.4.3 3b0b04aa3473f 50.7MB docker.io/rancher/local-path-provisioner v0.0.14 e422121c9c5f9 13.4MB docker.io/rancher/metrics-server v0.3.6 9dd718864ce61 10.5MB docker.io/rancher/pause 3.1 da86e6ba6ca19 327kB Enter the container and execute the bash command. Please note that you can only use the container ID, not the container name. crictl exec -it a5e34c24be371 /bin/bash Check the resource usage of applications in the container and you will find that it is very low.
CONTAINER CPU % MEM DISK INODES 3bb5767a81954 0.54 14.27MB 254B 14 a5e34c24be371 0.00 2.441MB 339B 16 Summarize It is very simple to transform from Docker to containerd, and there is basically no threshold. Just change This is the end of this article about how to say goodbye to Docker and transform to containerd in 5 minutes. For more information about docker transformation to containerd, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of the problems and solutions encountered in flex multi-column layout
>>: Similar to HTML tags: strong and em, q, cite, blockquote
Table of contents Preface 1. Routing lazy loading...
Method 1: Download Pycharm and install Download a...
Table of contents 1. Understanding the stack stru...
Table of contents Preface think Library directory...
Ellipses appear when multi-line text overflows Th...
Table of contents 1. let keyword 1.1 Basic Usage ...
How to turn a jar package into a docker container...
1. Usage: (1) EXISTS usage select a.batchName,a.p...
MySQL creates users and authorizes and revokes us...
1. Modify MySQL login settings: # vim /etc/my.cnf...
This article records the specific method of insta...
1. Enter the following address in the browser htt...
Preface This article analyzes the process of shut...
In a page, there are many controls (elements or ta...
Table of contents background Solution New Questio...