Skip to content

Commit 69312dd

Browse files
authored
Merge pull request #32579 from nate-double-u/merged-main-dev-1.24
Merged main into dev 1.24
2 parents 6da9c34 + 7c67921 commit 69312dd

File tree

189 files changed

+7861
-5328
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

189 files changed

+7861
-5328
lines changed

OWNERS_ALIASES

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ aliases:
2424
- jimangel
2525
- jlbutler
2626
- kbhawkey
27+
- natalisucks
2728
- nate-double-u # RT 1.24 Docs Lead
2829
- onlydole
2930
- pi-victor
@@ -40,6 +41,7 @@ aliases:
4041
- jimangel
4142
- kbhawkey
4243
- mehabhalodiya
44+
- natalisucks
4345
- onlydole
4446
- rajeshdeshpande02
4547
- sftim
@@ -147,8 +149,11 @@ aliases:
147149
- divya-mohan0209
148150
- jimangel
149151
- kbhawkey
152+
- natalisucks
150153
- onlydole
154+
- reylejano
151155
- sftim
156+
- tengqm
152157
sig-docs-zh-owners: # Admins for Chinese content
153158
# chenopis
154159
- chenrui333
@@ -241,7 +246,6 @@ aliases:
241246
# authoritative source: https://git.k8s.io/sig-release/OWNERS_ALIASES
242247
sig-release-leads:
243248
- cpanato # SIG Technical Lead
244-
- hasheddan # SIG Technical Lead
245249
- jeremyrickard # SIG Technical Lead
246250
- justaugustus # SIG Chair
247251
- LappleApple # SIG Program Manager

assets/scss/_custom.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,8 @@ main.content {
566566
}
567567
}
568568

569-
/* COMMUNITY */
569+
/* COMMUNITY legacy styles */
570+
/* Leave these in place until localizations are caught up */
570571

571572
.newcommunitywrapper {
572573
.news {
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
layout: blog
3+
title: "Is Your Cluster Ready for v1.24?"
4+
date: 2022-03-31
5+
slug: ready-for-dockershim-removal
6+
---
7+
8+
**Author:** Kat Cosgrove
9+
10+
11+
Way back in December of 2020, Kubernetes announced the [deprecation of Dockershim](/blog/2020/12/02/dont-panic-kubernetes-and-docker/). In Kubernetes, dockershim is a software shim that allows you to use the entire Docker engine as your container runtime within Kubernetes. In the upcoming v1.24 release, we are removing Dockershim - the delay between deprecation and removal in line with the [project’s policy](https://kubernetes.io/docs/reference/using-api/deprecation-policy/) of supporting features for at least one year after deprecation. If you are a cluster operator, this guide includes the practical realities of what you need to know going into this release. Also, what do you need to do to ensure your cluster doesn’t fall over!
12+
13+
## First, does this even affect you?
14+
15+
If you are rolling your own cluster or are otherwise unsure whether or not this removal affects you, stay on the safe side and [check to see if you have any dependencies on Docker Engine](/docs/tasks/administer-cluster/migrating-from-dockershim/check-if-dockershim-deprecation-affects-you/). Please note that using Docker Desktop to build your application containers is not a Docker dependency for your cluster. Container images created by Docker are compliant with the [Open Container Initiative (OCI)](https://opencontainers.org/), a Linux Foundation governance structure that defines industry standards around container formats and runtimes. They will work just fine on any container runtime supported by Kubernetes.
16+
17+
If you are using a managed Kubernetes service from a cloud provider, and you haven’t explicitly changed the container runtime, there may be nothing else for you to do. Amazon EKS, Azure AKS, and Google GKE all default to containerd now, though you should make sure they do not need updating if you have any node customizations. To check the runtime of your nodes, follow [Find Out What Container Runtime is Used on a Node](​​/docs/tasks/administer-cluster/migrating-from-dockershim/find-out-runtime-you-use/).
18+
19+
Regardless of whether you are rolling your own cluster or using a managed Kubernetes service from a cloud provider, you may need to [migrate telemetry or security agents that rely on Docker Engine](/docs/tasks/administer-cluster/migrating-from-dockershim/migrating-telemetry-and-security-agents/).
20+
21+
## I have a Docker dependency. What now?
22+
23+
If your Kubernetes cluster depends on Docker Engine and you intend to upgrade to Kubernetes v1.24 (which you should eventually do for security and similar reasons), you will need to change your container runtime from Docker Engine to something else or use [cri-dockerd](https://github.com/Mirantis/cri-dockerd). Since [containerd](https://containerd.io/) is a graduated CNCF project and the runtime within Docker itself, it’s a safe bet as an alternative container runtime. Fortunately, the Kubernetes project has already documented the process of [changing a node’s container runtime](/docs/tasks/administer-cluster/migrating-from-dockershim/change-runtime-containerd/), using containerd as an example. Instructions are similar for switching to one of the other supported runtimes.
24+
25+
## I want to upgrade Kubernetes, and I need to maintain compatibility with Docker as a runtime. What are my options?
26+
27+
Fear not, you aren’t being left out in the cold and you don’t have to take the security risk of staying on an old version of Kubernetes. Mirantis and Docker have jointly released, and are maintaining, a replacement for dockershim. That replacement is called [cri-dockerd](https://github.com/Mirantis/cri-dockerd). If you do need to maintain compatibility with Docker as a runtime, install cri-dockerd following the instructions in the project’s documentation.
28+
29+
## Is that it?
30+
31+
32+
Yes. As long as you go into this release aware of the changes being made and the details of your own clusters, and you make sure to communicate clearly with your development teams, it will be minimally dramatic. You may have some changes to make to your cluster, application code, or scripts, but all of these requirements are documented. Switching from using Docker Engine as your runtime to using [one of the other supported container runtimes](/docs/setup/production-environment/container-runtimes/) effectively means removing the middleman, since the purpose of dockershim is to access the container runtime used by Docker itself. From a practical perspective, this removal is better both for you and for Kubernetes maintainers in the long-run.
33+
34+
If you still have questions, please first check the [Dockershim Removal FAQ](/blog/2022/02/17/dockershim-faq/).

0 commit comments

Comments
 (0)