Difference between revisions of "Kubernetes"
Jump to navigation
Jump to search
| Line 1: | Line 1: | ||
= Kubernetes = | |||
== kubectl == | == kubectl == | ||
Revision as of 17:07, 21 January 2026
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