fix a mistake in limit-range.md (#14836)

This commit is contained in:
Pingan 2019-06-12 21:53:34 +08:00 committed by Kubernetes Prow Robot
parent be946f210d
commit 528fd25b3f
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ kubectl get po/busybox1 -n limitrange-demo -o json | jq ".spec.containers[2].re
```
- The `busybox-cnt03` Container inside `busybox1` Pod defined `limits.cpu=500m` and `limits.memory=200Mi` but no `requests` for cpu and memory.
- The container do not define a request section, the defaultRequest defined in the limit-mem-cpu-per-container LimitRange is not used to fill its limits section but the limits defined by the container are set as requests `limits.cpu=500m` and `limits.memory=900Mi`.
- The container do not define a request section, the defaultRequest defined in the limit-mem-cpu-per-container LimitRange is not used to fill its limits section but the limits defined by the container are set as requests `limits.cpu=500m` and `limits.memory=200Mi`.
- `100m <= 500m <= 800m` , The container cpu limit (500m) falls inside the authorized CPU limit range.
- `99Mi <= 200Mi <= 1Gi` , The container memory limit (200Mi) falls inside the authorized Memory limit range.
- No request/limits ratio set , thus the container is valid and created.