Skip to content

WuKongIM/helm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

多节点点部署

说明

适用场景:对数据安全要求高的应用,大型应用。

优点:高可用,容灾性强,支持在线扩容,多副本之间实时自动备份,负载均衡, 无需手动配置, 快速伸缩

缺点:需要多台机器。

1. 添加Helm仓库

helm repo add wukongim https://wukongim.github.io/helm/

2. 更新Helm仓库

helm repo update

3. 搜索可用的 Chart

helm search repo wukongim

4. 部署

# 可选参数 
# 1.副本数量 replicaCount=1 默认为2
# 2.外部IP externalIP=
helm install wkim wukongim/wukongim -n wukomgim --create-namespace --version 0.1.0 --set replicaCount=3

5. 查看安装状态

helm status wkim

6. 卸载

helm uninstall wkim