Don't Panic

By Kubernetes - 2020-12-02

Description

Authors: Jorge Castro, Duffie Cooley, Kat Cosgrove, Justin Garrison, Noah Kantrowitz, Bob Killen, Rey Lejano, Dan “POP” Papandrea, Jeffrey Sica, Davanum “Dims” Srinivas Kubernetes is deprecating Docke ...

Summary

  • tl;dr Docker as an underlying runtime is being deprecated in favor of runtimes that use the Container Runtime Interface(CRI) created for Kubernetes.
  • If you have node customizations you may need to update them based on your environment and runtime requirements.
  • Docker is a popular choice for that runtime (other common options include containerd and CRI-O), but Docker was not designed to be embedded inside Kubernetes, and that causes a problem.
  • So, this change is coming.

 

Topics

  1. Backend (0.19)
  2. UX (0.04)
  3. Management (0.04)

Similar Articles

Free 4-Hour Course on Docker and Kubernetes

By freeCodeCamp.org - 2020-10-15

Docker and Kubernetes make it simpler to run code and software in different environments. Containers are a way of packaging software. Running a container is like running a virtual machine. You can us ...