阅读更多
1 local-path-provisioner
2 Rancher
3 Kafka
Kafka的服务露出有点问题,如果简单地把Service
从ClusterIP
修改为NodePort
。那么在集群外是可以通过NodeIp:NodePort
连接到kafka的,但是随即kafka
会从zookeeper
查找一个broker
的IP(这个IP是PodIP
)返回给集群外的Client,然后Client重新连接这个IP
,显然在集群外的机器上是无法触达PodIp
的,因为没有iptables
规则
3.1 Reference
- External communication with Apache Kafka deployed in Kubernetes cluster
- 基于Kubernetes在AWS上部署Kafka时遇到的一些问题
4 istio
4.1 Reference
5 OAM
6 sealos
sealos,一个超级便捷的k8s安装工具
Deploy:
1 | wget https://mirror.ghproxy.com/https://github.com/labring/sealos/releases/download/v4.2.0/sealos_4.2.0_linux_amd64.tar.gz |
Reset:
1 | sealos reset |
7 kind
kind. kind is a tool for running local Kubernetes clusters using Docker container “nodes”. kind was primarily designed for testing Kubernetes itself, but may be used for local development or CI.