安装部署
添加bitnami仓库并查找redis
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo update
[kmning@k8s-register-node ~]$ helm search repo redis
NAME CHART VERSION APP VERSION DESCRIPTION
bitnami/redis 17.10.1 7.0.11 Redis(R) is an open source, advanced key-value ...
bitnami/redis-cluster 8.4.4 7.0.11 Redis(R) is an open source, scalable, distribut...
拉取chat到本地
helm pull bitnami/redis-cluster --version 8.4.4
tar -zxvf redis-cluster-8.4.4.tgz
cp redis-cluster/values.yaml ./values-test.yaml
对本地values-test.yaml进行修改,配置非常多,根据实际情况进行修改,比如我主要修改了如下内容
global:imageRegistry: "xxx.com:443"## E.g.## imagePullSecrets:## - myRegistryKeySecretName##imagePullSecrets: []storageClass: "managed-nfs-storage"redis:password: "pwd"所有用到image的地方改成私服
image:registry: xxx:443repository: lib-proxy/bitnami/redis-cluster## Bitnami Redis® image tag## ref: https://github.com/bitnami/containers/tree/main/bitnami/redis#supported-tags-and-respective-dockerfile-links##tag: 7.0.11-debian-11-r0persistence:## @param persistence.enabled Enable persistence on Redis®## If enabled, nodes are using Persistent Volume Claims## If disabled, an emptyDir volume is used##enabled: true## @param persistence.path Path to mount the volume at, to use other images Redis® images.##path: /bitnami/redis/data## @param persistence.subPath The subdirectory of the volume to mount to, useful in dev environments and one PV for multiple services##subPath: ""## @param persistence.storageClass Storage class of backing PVC## If defined, stora