From 4f0f3635045c703b38fc1ed155a7035bfc44c7e6 Mon Sep 17 00:00:00 2001 From: Jan Klippel Date: Fri, 7 Jan 2022 14:58:37 +0100 Subject: [PATCH] corrected link in cri architecture documentation The referenced document was moved into the staging directory within the kubernetes repository Signed-off-by: Jan Klippel --- docs/cri/architecture.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cri/architecture.md b/docs/cri/architecture.md index 823e72853..3b62a2744 100644 --- a/docs/cri/architecture.md +++ b/docs/cri/architecture.md @@ -1,7 +1,7 @@ # Architecture of The CRI Plugin This document describes the architecture of the `cri` plugin for `containerd`. -This plugin is an implementation of Kubernetes [container runtime interface (CRI)](https://github.com/kubernetes/kubernetes/blob/master/pkg/kubelet/apis/cri/runtime/v1alpha2/api.proto). Containerd operates on the same node as the [Kubelet](https://kubernetes.io/docs/reference/generated/kubelet/). The `cri` plugin inside containerd handles all CRI service requests from the Kubelet and uses containerd internals to manage containers and container images. +This plugin is an implementation of Kubernetes [container runtime interface (CRI)](https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1alpha2/api.proto). Containerd operates on the same node as the [Kubelet](https://kubernetes.io/docs/reference/generated/kubelet/). The `cri` plugin inside containerd handles all CRI service requests from the Kubelet and uses containerd internals to manage containers and container images. The `cri` plugin uses containerd to manage the full container lifecycle and all container images. As also shown below, `cri` manages pod networking via [CNI](https://github.com/containernetworking/cni) (another CNCF project).