kubectl 常用命令搜集 —— 筑梦之路

集群信息:

  1. 1. 显示 Kubernetes 版本:kubectl version

  2. 2. 显示集群信息:kubectl cluster-info

  3. 3. 列出集群中的所有节点:kubectl get nodes

  4. 4. 查看一个具体的节点详情:kubectl describe node

  5. 5. 列出所有命名空间:kubectl get namespaces

  6. 6. 列出所有命名空间中的所有 pod:kubectl get pods --all-namespaces

Pod 诊断:

  1. 1. 列出特定命名空间中的 pod:kubectl get pods -n

  2. 2. 查看一个 Pod 详情:kubectl describe pod -n

  3. 3. 查看 Pod 日志:kubectl logs -n

  4. 4. 尾部 Pod 日志:kubectl logs -f -n

  5. 5. 在 pod 中执行命令:kubectl exec -it -n --

Pod 健康检查:

  1. 1. 检查 Pod 准备情况:kubectl get pods -n -o jsonpath='{.status.conditions[?(@.type=="Ready")].status}'

  2. 2. 检查 Pod 事件:kubectl get events -n --field-selector involvedObject.name=

Service诊断:

  1. 1. 列出命名空间中的所有服务:kubectl get svc -n

  2. 2. 查看一个服务详情:kubectl describe svc -n

Deployment诊断:

  1. 1. 列出命名空间中的所有Deployment:kubectl get deployments -n

  2. 2. 查看一个Deployment详情:kubectl describe deployment -n

  3. 3. 查看滚动发布状态:kubectl rollout status deployment/ -n

  4. 4. 查看滚动发布历史记录:kubectl rollout history deployment/ -n

StatefulSet诊断:

  1. 1. 列出命名空间中的所有 StatefulSet:kubectl get statefulsets -n

  2. 2. 查看一个 StatefulSet详情:kubectl describe statefulset -n

ConfigMap 和Secret诊断:

  1. 1. 列出命名空间中的 ConfigMap:kubectl get configmaps -n

  2. 2. 查看一个ConfigMap详情:kubectl describe configmap -n

  3. 3. 列出命名空间中的 Secret:kubectl get secrets -n

  4. 4. 查看一个Secret详情:kubectl describe secret -n

命名空间诊断:

  1. 1. 查看一个命名空间详情:kubectl describe namespace

资源使用情况:

  1. 1. 检查 pod 的资源使用情况:kubectl top pod -n

  2. 2. 检查节点资源使用情况:kubectl top nodes

网络诊断:

  1. 1. 显示命名空间中 Pod 的 IP 地址:kubectl get pods -n -o custom-columns=POD:metadata.name,IP:status.podIP --no-headers

  2. 2. 列出命名空间中的所有网络策略:kubectl get networkpolicies -n

  3. 3. 查看一个网络策略详情:kubectl describe networkpolicy -n

持久卷 (PV) 和持久卷声明 (PVC) 诊断:

  1. 1. 列出PV:kubectl get pv

  2. 2. 查看一个PV详情:kubectl describe pv

  3. 3. 列出命名空间中的 PVC:kubectl get pvc -n

  4. 4. 查看PVC详情:kubectl describe pvc -n

节点诊断:

  1. 1. 获取特定节点上运行的 Pod 列表:kubectl get pods --field-selector spec.nodeName= -n

资源配额和限制:

  1. 1. 列出命名空间中的资源配额:kubectl get resourcequotas -n

  2. 2. 查看一个资源配额详情:kubectl describe resourcequota -n

自定义资源定义 (CRD) 诊断:

  1. 1. 列出命名空间中的自定义资源:kubectl get -n

  2. 2. 查看自定义资源详情:kubectl describe -n

使用这些命令时,请记住将, 和替换为你的特定值。

这些命令应该可以帮助你诊断 Kubernetes 集群以及在其中运行的应用程序。

资源伸缩和自动伸缩

  1. 1. Deployment伸缩:kubectl scale deployment --replicas= -n

  2. 2. 设置Deployment的自动伸缩:kubectl autoscale deployment --min= --max= --cpu-percent= -n

  3. 3. 检查水平伸缩器状态:kubectl get hpa -n

作业和 CronJob 诊断:

  1. 1. 列出命名空间中的所有作业:kubectl get jobs -n

  2. 2. 查看一份工作详情:kubectl describe job -n

  3. 3. 列出命名空间中的所有 cron 作业:kubectl get cronjobs -n

  4. 4. 查看一个 cron 作业详情:kubectl describe cronjob -n

容量诊断:

  1. 1. 列出按容量排序的持久卷 (PV):kubectl get pv --sort-by=.spec.capacity.storage

  2. 2. 查看PV回收策略:kubectl get pv -o=jsonpath='{.spec.persistentVolumeReclaimPolicy}'

  3. 3. 列出所有存储类别:kubectl get storageclasses

Ingress和服务网格诊断:

  1. 1. 列出命名空间中的所有Ingress:kubectl get ingress -n

  2. 2. 查看一个Ingress详情:kubectl describe ingress -n

  3. 3. 列出命名空间中的所有 VirtualServices (Istio):kubectl get virtualservices -n

  4. 4. 查看一个 VirtualService (Istio)详情:kubectl describe virtualservice -n

Pod 网络故障排除:

  1. 1. 运行网络诊断 Pod(例如 busybox)进行调试:kubectl run -it --rm --restart=Never --image=busybox net-debug-pod -- /bin/sh

  2. 2. 测试从 Pod 到特定端点的连接:kubectl exec -it -n -- curl

  3. 3. 跟踪从一个 Pod 到另一个 Pod 的网络路径:kubectl exec -it -n -- traceroute

  4. 4. 检查 Pod 的 DNS 解析:kubectl exec -it -n -- nslookup

你可能感兴趣的:(虚拟化,云计算,linux系统运维,docker,linux,容器,kubernetes)