Kubernetes 工具栈
⬅︎ 返回上层
TOC
其他
镜像与代理
- http://mirror.azure.cn/help/gcr-proxy-cache.html : GCR 代理
- https://mirror.azure.cn/kubernetes/ : containernetworking-plugins, etcd, kubectl, containerd 等资源的镜像
- quay.io,使用
quay.azk8s.cn
替代。
- https://kubernetes-charts.proxy.ustclug.org : helm chart 仓库镜像,http、https 都支持
kubectl
- kubectx: 方便操作 kubectl。kubens 用来管理、切换 namespace,kubectx 用来管理、切换 k8s 集群
- krew: kubectl 插件的包管理器
环境
- https://labs.play-with-k8s.com/ : 在线练习 K8S 集群
- minikube: 本地开发部署单节点 k8s 集群的工具。
- kubeadm: 部署多节点 k8s 集群的工具。
- kubespray: 基于 kubeadm 和 ansible 的 K8S 部署工具。
- kops: 在云厂商部署 k8s 集群的工具。
编排
- k8s-wait-for: 等待 K8S Service, Job 或 Pod to enter a desired state。纯 shell 脚本实现。
- wait-for-it: 等待指定 host:port 可用,执行指定命令。纯 shell 脚本实现。
容器
- cri-tools: CLI and validation tools for Kubelet Container Runtime Interface (CRI) .
构建
- skaffold: Build\Test\Deploy\Tag\Push 自动化框架
- kaniko: 在容器里构建镜像
- Azure/draft: Draft makes it easy to build applications that run on Kubernetes. Draft targets the “inner loop” of a developer’s workflow: as they hack on code, but before code is committed to version control.
包管理
- kustomize: 使用 Base + Overlay 的方式自定义生成 K8S YAML 配置
可视化管理/UI
监控
Operator
Add-On
Provisioner
Debug
- netshoot: a Docker + Kubernetes network trouble-shooting swiss-army container
- kubectl-debug: 可以非侵入式地排查 pod 和容器的网络问题。默认使用 netshoot 镜像。相关议题 Ephemeral Containers
- ksniff: Kubectl plugin to ease sniffing on kubernetes pods using tcpdump and wireshark
Load Balancer
- MetalLB: a load-balancer implementation for bare metal Kubernetes clusters
⬆ 返回顶部