alias k=kubectl
alias kd=kubectl delete
alias kds=kubectl describe
alias ke=kubectl edit
alias kr=kubectl run
alias kg=kubectl get
etcd
pod is running? list the pods in that namespacepython
that runs the command sleep 2017
ImagePullBackOff
means?kubectl run ohno --image=sheris
. Did it work? why not? fix it without removing the Pod and using any image you would likekubectl logs some-pod
k taint node minikube app=web:NoSchedule
on the only node in your cluster and then executed kubectl run some-pod --image=redis
. What will happen?k taint node minikube app=web:NoSchedule
on the only node in your cluster and then executed kubectl run some-pod --image=redis
but the Pod is in pending state. How to fix it?