From fcdcfba35916563b8b63965f1f2596ee7dcc5a93 Mon Sep 17 00:00:00 2001 From: Noah Kantrowitz Date: Thu, 22 Oct 2020 06:45:36 -0700 Subject: [PATCH] Containers don't get their own CPU (#24659) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 🐛 Containers don't get their own CPU This is overly broad, in all default setup containers all share the underlying host CPUs so I wouldn't say they "have their own". * Change wording to "share of CPU" to more closely reflect reality. Co-authored-by: Tim Bannister Co-authored-by: Tim Bannister --- content/en/docs/concepts/overview/what-is-kubernetes.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/content/en/docs/concepts/overview/what-is-kubernetes.md b/content/en/docs/concepts/overview/what-is-kubernetes.md index 6df252ede2..f3c4a1da02 100644 --- a/content/en/docs/concepts/overview/what-is-kubernetes.md +++ b/content/en/docs/concepts/overview/what-is-kubernetes.md @@ -38,7 +38,7 @@ Virtualization allows better utilization of resources in a physical server and a Each VM is a full machine running all the components, including its own operating system, on top of the virtualized hardware. -**Container deployment era:** Containers are similar to VMs, but they have relaxed isolation properties to share the Operating System (OS) among the applications. Therefore, containers are considered lightweight. Similar to a VM, a container has its own filesystem, CPU, memory, process space, and more. As they are decoupled from the underlying infrastructure, they are portable across clouds and OS distributions. +**Container deployment era:** Containers are similar to VMs, but they have relaxed isolation properties to share the Operating System (OS) among the applications. Therefore, containers are considered lightweight. Similar to a VM, a container has its own filesystem, share of CPU, memory, process space, and more. As they are decoupled from the underlying infrastructure, they are portable across clouds and OS distributions. Containers have become popular because they provide extra benefits, such as: @@ -94,4 +94,3 @@ Kubernetes: * Take a look at the [Kubernetes Components](/docs/concepts/overview/components/) * Ready to [Get Started](/docs/setup/)? -