wrapping in to <80 characters

This commit is contained in:
Tamilselvan 2023-05-31 10:40:25 +05:30 committed by GitHub
parent 3cf47e9bb0
commit b189eebd48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 9 deletions

View File

@ -11,17 +11,16 @@ feature:
<!-- overview --> <!-- overview -->
When you specify a {{< glossary_tooltip term_id="pod" >}}, you can optionally specify how When you specify a {{< glossary_tooltip term_id="pod" >}}, you can optionally specify how much of each resource a
much of each resource a {{< glossary_tooltip text="container" term_id="container" >}} needs. {{< glossary_tooltip text="container" term_id="container" >}} needs. The most common resources to specify are CPU and memory
The most common resources to specify are CPU and memory (RAM); there are others. (RAM); there are others.
When you specify the resource _request_ for containers in a Pod, the When you specify the resource _request_ for containers in a Pod, the
{{< glossary_tooltip text="kube-scheduler" term_id="kube-scheduler" >}} uses this {{< glossary_tooltip text="kube-scheduler" term_id="kube-scheduler" >}} uses this information to decide which node to place the Pod on.
information to decide which node to place the Pod on. When you specify a resource _limit_ When you specify a resource _limit_ for a container, the {{< glossary_tooltip text="kubelet" term_id="kubelet" >}} enforces those
for a container, the {{< glossary_tooltip text="kubelet" term_id="kubelet" >}} enforces those limits so that the running container is not limits so that the running container is not allowed to use more of that resource
allowed to use more of that resource than the limit you set. The kubelet also reserves than the limit you set. The kubelet also reserves at least the _request_ amount of
at least the _request_ amount of that system resource specifically for that container that system resource specifically for that container to use.
to use.
<!-- body --> <!-- body -->