k8s 常用命令
kuebctl get pods --all-namespaceskubectl create -f 123.yaml --save-config --recordkubectl apply -f 123.yaml --recordkubect delete -f 123.yamlkubectl logs pods名称 -n namespacekubectl describe pods ...
kuebctl get pods --all-namespaces
kubectl create -f 123.yaml --save-config --record
kubectl apply -f 123.yaml --record
kubect delete -f 123.yaml
kubectl logs pods名称 -n namespace
kubectl describe pods 名称 -n namespace
kubectl exec -it pods 名称 bash -n namespace
kubectl delete pods pods 名称 bash -n namespace
kubectl get service --all-namespaces -o wide
kubectl get pods --all-namespaces -o wide
kubectl get nodes--all-namespaces -o wide
kubectl get deployment -n namespace
kubectl get deployment -n namespace -o wide
#强制删除pods
kubectl delete po <your-pod-name> -n <name-space> --force --grace-period=0
更多推荐
所有评论(0)