https://github.com/FingerLiu/kubectl-smart
![demo]( https://github.com/FingerLiu/kubectl-smart/raw/main/imgs/kubectl-smart.gif
给 kubectl 支持了正则匹配功能,不管是 namespace 还是资源名,都可以模糊查找。 主要解决了以下两个痛点:
kubectl s g deploy my
即可kubectl s l deploy-name
即可Type less, Live more! 俩字,好使。
curl -LO https://github.com/FingerLiu/kubectl-smart/raw/master/kubectl-smart
chmod +x ./kubectl-smart
sudo mv ./kubectl-smart /usr/local/bin/kubectl-s
kubectl s -h
Examples:
# if you installed through krew, you should **kubectl smart** to replace **kubectl s**
# get pod with name contains my in namespace her-namespace
# (kubectl get pod -n her-namespace-a |grep my)
kubectl s gp -n her.*a my
# get log for pod with name my
# (kubectl logs --tail 100 -f $(kubectl get pods | awk '/my/ {print $1;exit}'))
kubectl s l my
# exec into pod
# kubectl exec -ti my-pod-i3jx bash
kubectl s e my bash
# get deploy with name contains my
# (kubectl get deploy | grep my)
kubectl s g deploy my
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.