Kubernetes
Jump to navigation
Jump to search
Kubernetes
kubectl
kubectl get pods Show all pods
kubectl get pods -o wide Show all pods with more info
kubectl run <pod-name> --image=nginx Run new nginx pod
kubectl describe pod <pod-name> Describe pod
kubectl edit pod <pod-name> Edit pod with editor
kubectl delete pod <pod-name> Delete pod from default namespace