diff --git a/topics/kubernetes/CKA.md b/topics/kubernetes/CKA.md index a00c37a..b6084aa 100644 --- a/topics/kubernetes/CKA.md +++ b/topics/kubernetes/CKA.md @@ -56,7 +56,7 @@ Note: create an alias (`alias k=kubectl`) and get used to `k get po`
Assuming that you have a Pod called "nginx-test", how to remove it?
-`k delete nginx-test` +`k delete po nginx-test`
@@ -159,8 +159,6 @@ First change to the directory tracked by kubelet for creating static pod: `cd /e Now create the definition/manifest in that directory -`k run some-pod --image=python --command sleep 2017 --restart=Never --dry-run=client -o yaml > status-pod.yaml` -======= `k run some-pod --image=python --command sleep 2017 --restart=Never --dry-run=client -o yaml > static-pod.yaml`