You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
#### openIM k8s部署文档
|
|
|
|
|
### 1. 修改配置文件
|
|
|
|
|
在Open-IM-SERVER目录下修改config/config.yaml配置文件, 将MySQL, Kafka, MongoDB等配置修改。
|
|
|
|
|
|
|
|
|
|
### 2. 项目根目录创建im configMap到k8s openim namespace
|
|
|
|
|
kubectl create namespace openim
|
|
|
|
|
kubectl -n openim create configmap config --from-file=config/config.yaml
|
|
|
|
|
openim 为im项目的namespace, 可选
|
|
|
|
|
|
|
|
|
|
### 3(可选). 修改每个deployment.yml
|
|
|
|
|
kubectl get nodes
|
|
|
|
|
kubectl label node k8s-node1 role=kube-Node
|
|
|
|
|
应需要调度的node打上标签
|
|
|
|
|
nodeSelector:
|
|
|
|
|
node: kube-Node
|
|
|
|
|
创建资源清单时添加上nodeSelector属性对应即可
|
|
|
|
|
修改每种服务数量,建议至少每种2个rpc。
|
|
|
|
|
|
|
|
|
|
### 4. 修改ingress.yaml配置文件
|
|
|
|
|
|
|
|
|
|
### 5. 执行./kubectl_start.sh脚本
|
|
|
|
|
chmod +x ./kubectl_start.sh ./kubectl_stop.sh
|
|
|
|
|
./kubectl_start.sh
|
|
|
|
|
kubectl 启动所有deployment,services,ingress
|
|
|
|
|
|
|
|
|
|
### 6. 查看k8s deployment service ingress状态
|
|
|
|
|
kubectl -n openim get services
|
|
|
|
|
kubectl -n openim get deployment
|
|
|
|
|
kubectl -n openim get ingress
|