From 8a2c201719e9b20a5aaf21213276867992d794a8 Mon Sep 17 00:00:00 2001 From: Chelsea Mafrica Date: Sat, 29 Jul 2023 00:38:35 +0000 Subject: [PATCH] docs: Update links for pods and kubelet The links for pods and kubelets no longer work so update to new links with relevant info. Fixes #7487 Signed-off-by: Chelsea Mafrica --- docs/design/architecture/kubernetes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/design/architecture/kubernetes.md b/docs/design/architecture/kubernetes.md index be8165d75..8d4d3144c 100644 --- a/docs/design/architecture/kubernetes.md +++ b/docs/design/architecture/kubernetes.md @@ -3,11 +3,11 @@ [Kubernetes](https://github.com/kubernetes/kubernetes/), or K8s, is a popular open source container orchestration engine. In Kubernetes, a set of containers sharing resources such as networking, storage, mount, PID, etc. is called a -[pod](https://kubernetes.io/docs/user-guide/pods/). +[pod](https://kubernetes.io/docs/concepts/workloads/pods/). A node can have multiple pods, but at a minimum, a node within a Kubernetes cluster only needs to run a container runtime and a container agent (called a -[Kubelet](https://kubernetes.io/docs/admin/kubelet/)). +[Kubelet](https://kubernetes.io/docs/concepts/overview/components/#kubelet)). Kata Containers represents a Kubelet pod as a VM.