当前位置: 首页 > 工具软件 > BitNami > 使用案例 >

K8S 部署 redis 哨兵集群

苗承
2023-12-01

Redis™ packaged by Bitnami
官方文档

把 bitnami 加入 helm 仓库

helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo update

哨兵模式 values.yaml

global:
  storageClass: "local-path"
  redis:
    password: "Li8IanC5oLGY"
architecture: replication
commonConfiguration: |-
  slave-read-only no
metrics:
  enabled: true
sentinel:
  enabled: true

主从模式

global:
  storageClass: "nfs-client"
  redis:
    password: "xxxx"
architecture: replication
commonConfiguration: |-
  slave-read-only no
metrics:
  enabled: true
sentinel:
  enabled: false
master:
  disableCommands: 
    - FLUSHALL
  service:
    type: "NodePort"
    nodePorts:
      redis: "30007"
replica:
  disableCommands: 
    - FLUSHALL

storageClass:使用本地存储
redis.password:redis 的密码
architecture: 架构,这里是集群部署,默认是3个节点
commonConfiguration: 添加到ConfigMap中的常见配置,添加这个配置后,三个节点都可以有写的权限
metrics:开启监控
sentinel:开启哨兵,不开启则主从模式

搭建本地存储可以参考 k8s 安装本地 storageClass
搭建NFS存储可以参考K8S 集群使用 NFS 做 storageclass

报错:java连接redis时报错

 READONLY You can't write against a read only slave.

原因:从节点只有只读权限
解决方案:配置文件修改 slave-read-only no

helm 命令
干跑

helm install --debug --dry-run   redis bitnami/redis  -f values.yaml

部署

helm install  redis bitnami/redis  -f values.yaml -n component
 类似资料: