Update assign-memory-resource.md

Because "Container" is a specific word in Kubernetes, so the first letter need to be capitalized.
This commit is contained in:
lemon-tree
2017-08-14 16:07:19 +08:00
committed by Andrew Chen
parent cdbac541a9
commit 8ff1c80bf5
@@ -54,7 +54,7 @@ kubectl create namespace mem-example
To specify a memory request for a Container, include the `resources:requests` field To specify a memory request for a Container, include the `resources:requests` field
in the Container's resource manifest. To specify a memory limit, include `resources:limits`. in the Container's resource manifest. To specify a memory limit, include `resources:limits`.
In this exercise, you create a Pod that has one Container. The container has a memory In this exercise, you create a Pod that has one Container. The Container has a memory
request of 100 MiB and a memory limit of 200 MiB. Here's the configuration file request of 100 MiB and a memory limit of 200 MiB. Here's the configuration file
for the Pod: for the Pod:
@@ -127,7 +127,7 @@ kubectl delete pod memory-demo --namespace=mem-example
## Exceed a Container's memory limit ## Exceed a Container's memory limit
A Container can exceed its memory request if the Node has memory available. But a Container A Container can exceed its memory request if the Node has memory available. But a Container
is not allowed to use more than its memory limit. If a container allocates more memory than is not allowed to use more than its memory limit. If a Container allocates more memory than
its limit, the Container becomes a candidate for termination. If the Container continues to its limit, the Container becomes a candidate for termination. If the Container continues to
to consume memory beyond its limit, the Container is terminated. If a terminated Container is to consume memory beyond its limit, the Container is terminated. If a terminated Container is
restartable, the kubelet will restart it, as with any other type of runtime failure. restartable, the kubelet will restart it, as with any other type of runtime failure.