kubectl是K8s官方附带的命令行工具, 可以方便的操作K8s集群. 这篇文章主要介绍一些kubectl的别样用法,
希望读者有基础的K8s使用经验.
有一篇文章也介绍了一些技巧, 写博客的时候正好搜到了, 正好也分享出来吧.
Ready-to-use commands and tips for kubectl(https://blog.flant.com/ready-to-use-commands-and-tips-for-kubectl/)
打印当前使用的API
按状态筛选容器以及删除 这是我在这里学到的命令: Force Delete Evicted / Terminated Pods in Kubernetes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 kubectl get pods --all-namespaces --field-selector status.phase=Pending -o json | \ jq '.items[] | "kubectl delete pods \(.metadata.name) -n \(.metadata.namespace)"' | \ xargs -n 1 bash -c kubectl get pods --all-namespaces --field-selector status.phase=Pending -o json jq '.items[] | "kubectl delete pods \(.metadata.name) -n \(.metadata.namespace)"' xargs -n 1 bash -c kubectl get pods --all-namespaces --field-selector status.phase=Running -o json | \ jq '.items[] | "kubectl get pods \(.metadata.name) -o wide -n \(.metadata.namespace)"' "kubectl get pods metrics-server-6d684c7b5-gtd6q -o wide -n kube-system" "kubectl get pods local-path-provisioner-58fb86bdfd-98frc -o wide -n kube-system" "kubectl get pods nginx-deployment-574b87c764-xppmx -o wide -n default" kubectl -n default get pods | grep Completed | awk '{print $1}' | xargs kubectl -n default delete pods
统计具体某台机器上运行的所有pod
kubectl可以使用两种选择器, 一种是label, 一种是field, 可以看官网的介绍:
1 2 3 kubectl get pods --all-namespaces -o wide --field-selector spec.nodeName=pve-node1
统计Pod在不同机器的具体数量分布 不知道有读者看过我的这篇文章: 基于kubernetes的PaaS平台中细力度控制pods方案的实现 .
均衡分布的工作前提是得知pod在各个机器的分布情况. 最好的办法就是我们得到pod信息之后进行简单的统计,
这个工作可以使用awk
实现.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 kubectl -n default get pods -o wide -l app="nginx" | awk '{print $7}' |\ awk '{ count[$0]++ } END { printf("%-35s: %s\n","Word","Count"); for(ind in count){ printf("%-35s: %d\n",ind,count[ind]); } }' Word : Count NODE : 1 pve-node1 : 1 pve-node2 : 1
kubectl proxy的使用 你可以理解为这个命令为K8s的ApiServer做了一层代理, 使用该代理, 你可以直接调用API而不需要经过鉴权.
启动之后, 甚至可以实现kubectl
套娃, 下面是一个例子:
1 2 3 4 5 6 7 8 9 10 11 12 kubectl get ns -v=9 curl -k -v -XGET -H "Accept: application/json, */*" -H "User-Agent: kubectl/v1.21.3 (linux/amd64) kubernetes/ca643a4" 'http://localhost:8080/api?timeout=32s' skipped caching discovery info due to Get "http://localhost:8080/api?timeout=32s" : dial tcp 127.0.0.1:8080: connect: connection refused KUBECONFIG=~/.kube/config-symv3 kubectl proxy -p 8080 kubectl get ns NAME STATUS AGE default Active 127d
默认启动的proxy是屏蔽了某些api的, 并且有一些限制, 例如无法使用exec进入pod之中
可以使用kubectl proxy --help
来看, 例如
1 2 3 4 5 6 7 --accept-hosts='^localhost$,^127\.0\.0\.1$,^\[::1\]$' : Regular expression for hosts that the proxy should accept. --reject-paths='^/api/.*/pods/.*/exec,^/api/.*/pods/.*/attach' : Regular expression for paths that the proxy should reject. Paths specified here will be rejected even accepted by --accept-paths. kubectl proxy -p 8080 --keepalive 3600s --reject-paths='' -v=9
有人说这个kubectl proxy可能没什么作用, 那可能仅仅是你还没有实际的应用场景.
例如当我想要调试K8s dashboard
代码的时候. 如果直接使用kubeconfig文件, 我没法看到具体的请求过程,
如果你加上一层proxy转发, 并且设置-v=9
的时候, 你就自动获得了一个日志记录工具, 在调试时相当有用.
总结 kubectl是一个强大的命令行工具, 上面我只是介绍了我工作中对其用法的一点探索, 也并不鼓励大家非要记住这些命令,
只是希望当读者需要的时候, 能够想起来kubectl可以有类似的功能, 就不需要针对几个临时需求去研读client-api了.