Merge pull request #6132 from zburgermeiszter/patch-1

Pod name fixed
This commit is contained in:
Qiming
2017-11-04 09:00:24 +08:00
committed by GitHub
@@ -95,7 +95,7 @@ kubectl create -f https://k8s.io/docs/tasks/administer-cluster/cpu-defaults-pod-
View the Pod specification: View the Pod specification:
``` ```
kubectl get pod cpu-limit-no-request --output=yaml --namespace=default-cpu-example kubectl get pod default-cpu-demo-2 --output=yaml --namespace=default-cpu-example
``` ```
The output shows that the Container's CPU request is set to match its CPU limit. The output shows that the Container's CPU request is set to match its CPU limit.
@@ -122,6 +122,12 @@ Create the Pod:
kubectl create -f https://k8s.io/docs/tasks/administer-cluster/cpu-defaults-pod-3.yaml --namespace=default-cpu-example kubectl create -f https://k8s.io/docs/tasks/administer-cluster/cpu-defaults-pod-3.yaml --namespace=default-cpu-example
``` ```
View the Pod specification:
```
kubectl get pod default-cpu-demo-3 --output=yaml --namespace=default-cpu-example
```
The output shows that the Container's CPU request is set to the value specified in the The output shows that the Container's CPU request is set to the value specified in the
Container's configuration file. The Container's CPU limit is set to 1 cpu, which is the Container's configuration file. The Container's CPU limit is set to 1 cpu, which is the
default CPU limit for the namespace. default CPU limit for the namespace.