From 4e3c824c76b452c18843dfc653940e7e5c1c115f Mon Sep 17 00:00:00 2001 From: yxxhero Date: Fri, 3 Jun 2022 08:38:01 +0800 Subject: [PATCH] update redis chart version Signed-off-by: yxxhero --- Makefile | 2 +- docs/installation/customize-storage-db-redis.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 25ed35999..cbc7b6783 100644 --- a/Makefile +++ b/Makefile @@ -428,7 +428,7 @@ install-dependencies: certmanager postgresql redis ingress .PHONY: redis redis: helm sample-redis $(HELM) repo add bitnami https://charts.bitnami.com/bitnami - $(HELM) upgrade --install harbor-redis bitnami/redis --version 12.10.0 \ + $(HELM) upgrade --install harbor-redis bitnami/redis --version 15.7.0 \ --set-string existingSecret=harbor-redis \ --set-string existingSecretPasswordKey=redis-password \ --set usePassword=true diff --git a/docs/installation/customize-storage-db-redis.md b/docs/installation/customize-storage-db-redis.md index d8f692078..60bb877ea 100644 --- a/docs/installation/customize-storage-db-redis.md +++ b/docs/installation/customize-storage-db-redis.md @@ -90,7 +90,7 @@ The thing to note here is the names of the databases `core`, `notaryserver` (onl Harbor uses Redis as its cache service to cache data. You can create a cache instance from your cloud provider or pre-install a Redis on your resources. e.g.: ```shell -helm upgrade --install harbor-redis bitnami/redis --version 12.10.0 --set-string password=the-redis-password --set usePassword=true --set-string image.registry=ghcr.io --set-string image.repository=goharbor/redis +helm upgrade --install harbor-redis bitnami/redis --version 15.7.0 --set-string password=the-redis-password --set usePassword=true --set-string image.registry=ghcr.io --set-string image.repository=goharbor/redis ``` >NOTES: `make redis` can also help install a Redis instance quickly.