Align cheatsheet comments (#16178)

Signed-off-by: ialidzhikov <i.alidjikov@gmail.com>
This commit is contained in:
Ismail Alidzhikov
2019-09-27 23:29:36 +03:00
committed by Kubernetes Prow Robot
parent 61fd2ab61e
commit 5f9fe16f28
@@ -153,7 +153,8 @@ kubectl get pod my-pod -o yaml --export # Get a pod's YAML without cluster
kubectl describe nodes my-node
kubectl describe pods my-pod
kubectl get services --sort-by=.metadata.name # List Services Sorted by Name
# List Services Sorted by Name
kubectl get services --sort-by=.metadata.name
# List pods Sorted by Restart Count
kubectl get pods --sort-by='.status.containerStatuses[0].restartCount'
@@ -232,7 +233,8 @@ kubectl autoscale deployment foo --min=2 --max=10 # Auto scale a
## Patching Resources
```bash
kubectl patch node k8s-node-1 -p '{"spec":{"unschedulable":true}}' # Partially update a node
# Partially update a node
kubectl patch node k8s-node-1 -p '{"spec":{"unschedulable":true}}'
# Update a container's image; spec.containers[*].name is required because it's a merge key
kubectl patch pod valid-pod -p '{"spec":{"containers":[{"name":"kubernetes-serve-hostname","image":"new image"}]}}'