Kubernetes

From 6bit.ch wiki
Revision as of 17:07, 21 January 2026 by Xbl (talk | contribs) (→‎Kubernetes)
Jump to navigation Jump to search

k8s

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