常用的几款工具让 Kubernetes 集群上的工作更容易

常用的几款工具让 Kubernetes 集群上的工作更容易
文章图片

之前写过一篇 介绍了工具加速云原生 Java 开发。
其实日常工作中在集群上的操作也非常多,今天就来介绍我所使用的工具。
kubectl-alias 使用频率最高的工具,我自己稍微修改了一下,加入了 StatefulSet 的支持。
这个是我的 https://github.com/addozhang/kubectl-aliases,基于 https://github.com/ahmetb/kubectl-aliases。
比如输出某个 pod 的 json,kgpoojson xxx 等同于 kubectl get pod xxx -o json
结合 jq 使用效果更好 。
语法解读

  • k=kubectl
    • sys=--namespace kube-system
  • commands:
    • g=get
    • d=describe
    • rm=delete
    • a:apply -f
    • ak:apply -k
    • k:kustomize
    • ex: exec -i -t
    • lo: logs -f
  • resources:
    • po=pod, dep=deployment, ing=ingress, svc=service, cm=configmap, sec=secret,ns=namespace, no=node
  • flags:
    • output format: oyaml, ojson, owide
    • all: --all or --all-namespaces depending on the command
    • sl: --show-labels
    • w=-w/--watch
  • value flags (should be at the end):
    • n=-n/--namespace
    • f=-f/--filename
    • l=-l/--selector
kubectx + kubens 安装看这里
kubectx 用于在不同的集群间进行快速切换。假如用 kubectl,你需要:
# context 列表 kubectl config current-context # 设置 context kubectl config use-context coffee

常用的几款工具让 Kubernetes 集群上的工作更容易
文章图片

kubens 就是在不同 namespace 间快速切换的工具。用 kubectl 的话,需要:
# namespace 列表 kbuectl get ns # kubectl config set-context --current --namespace=kube-system

常用的几款工具让 Kubernetes 集群上的工作更容易
文章图片

k9s 没错,只比 k8s 多了个 1 。
k9s 提供了终端 UI 与 Kubernetes 集群进行编辑交互。本人常用的比如:
  • F 配置端口转发
  • l 输出 pod 日志
  • e 修改资源对象
  • s pod 终端交互模式
  • y yaml 方式输出资源对象
  • d describe 资源对象
  • ctrl+d 删除 pod
启动方式
# 指定 namespace 运行 k9s -n mycoolns # 指定 context 运行 k9s --context coolCtx # 只读模式运行 k9s --readonly

常用的几款工具让 Kubernetes 集群上的工作更容易
文章图片

键入问号“?” 就可以打开快捷操作指引。
常用的几款工具让 Kubernetes 集群上的工作更容易
文章图片

stern stern 可以用来 tail 集群上的多个 pod 和 pod 中多个容器的日志。不同的 pod 和容器以不同的颜色区分,方便 debug。
比如使用命令 stern -l tier=control-plane -n kube-system 可以输出 kube-system 命名空间下控制平面(labeltier=control-plane) pod 的日志。
常用的几款工具让 Kubernetes 集群上的工作更容易
文章图片

命令行选项
Tail multiple pods and containers from KubernetesUsage: stern pod-query [flags]Flags: -A, --all-namespacesIf present, tail across all namespaces. A specific namespace is ignored even if specified with --namespace. --color stringColor output. Can be 'always', 'never', or 'auto' (default "auto") --completion stringOutputs stern command-line completion code for the specified shell. Can be 'bash' or 'zsh' -c, --container stringContainer name when multiple containers in pod (default ".*") --container-state stringIf present, tail containers with status in running, waiting or terminated. Default to running. (default "running") --context stringKubernetes context to use. Default to current context configured in kubeconfig. -e, --exclude stringsRegex of log lines to exclude -E, --exclude-container stringExclude a Container name --field-selector stringSelector (field query) to filter on. If present, default to ".*" for the pod-query. -h, --helphelp for stern -i, --include stringsRegex of log lines to include --init-containersInclude or exclude init containers (default true) --kubeconfig stringPath to kubeconfig file to use -n, --namespace stringsKubernetes namespace to use. Default to namespace configured in Kubernetes context. To specify multiple namespaces, repeat this or set comma-separated value. -o, --output stringSpecify predefined template. Currently support: [default, raw, json] (default "default") -l, --selector stringSelector (label query) to filter on. If present, default to ".*" for the pod-query. -s, --since durationReturn logs newer than a relative duration like 5s, 2m, or 3h. Defaults to 48h. --tail intThe number of lines from the end of the logs to show. Defaults to -1, showing all logs. (default -1) --template stringTemplate to use for log lines, leave empty to use --output flag -t, --timestampsPrint timestamps --timezone stringSet timestamps to specific timezone (default "Local") -v, --versionPrint the version and exit

Lens Lens 是用来控制 Kubernetes 的 IDE,开源且免费。
消除了集群操作的复杂性、提供了实时的可观察性、方便故障排查、支持多系统的桌面客户端、兼容多种集群。
常用的几款工具让 Kubernetes 集群上的工作更容易
文章图片

Infra App Infra App 跟 Lens 差不多,UI 较 Lens 好些,但是功能就弱很多,类似 Lens 的只读模式。
免费版比收费版的区别只在于支持的集群数量,免费版只支持一个集群。
常用的几款工具让 Kubernetes 集群上的工作更容易
文章图片

kubefwd kubefwd,这个一直有安装但是使用次数寥寥,因为应用之间的访问没有走 service,不过偶尔做些实验的时候会用的上。
kubefwd 是一个用于端口转发Kubernetes中指定namespace下的全部或者部分pod的命令行工具。 kubefwd 使用本地的环回IP地址转发需要访问的service,并且使用与service相同的端口。 kubefwd 会临时将service的域条目添加到 /etc/hosts 文件中。
启动kubefwd后,在本地就能像在Kubernetes集群中一样使用service名字与端口访问对应的应用程序。
常用的几款工具让 Kubernetes 集群上的工作更容易
文章图片

常用的几款工具让 Kubernetes 集群上的工作更容易
文章图片

总结 善用工具可以提升效率,但并不是不可或缺的。
如果你有其他的工具,欢迎留言提出。
文章统一发布在公众号云原生指北
【常用的几款工具让 Kubernetes 集群上的工作更容易】常用的几款工具让 Kubernetes 集群上的工作更容易
文章图片

    推荐阅读