From bc45bb37434bfd591964f1acaae9662cb5670549 Mon Sep 17 00:00:00 2001 From: Lyndon Maydwell Date: Thu, 17 Oct 2019 01:51:52 +1100 Subject: [PATCH] Update NOTES.txt (#17691) * Update NOTES.txt Signed-off-by: Lyndon Maydwell * Update Chart.yaml Signed-off-by: Lyndon Maydwell --- stable/redis/Chart.yaml | 2 +- stable/redis/templates/NOTES.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stable/redis/Chart.yaml b/stable/redis/Chart.yaml index 2ad8fb1b59..1b1de21af3 100644 --- a/stable/redis/Chart.yaml +++ b/stable/redis/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: redis -version: 9.3.0 +version: 9.3.1 appVersion: 5.0.5 description: Open source, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets. keywords: diff --git a/stable/redis/templates/NOTES.txt b/stable/redis/templates/NOTES.txt index f152a06b00..f3b46e1a5a 100644 --- a/stable/redis/templates/NOTES.txt +++ b/stable/redis/templates/NOTES.txt @@ -95,7 +95,7 @@ To connect to your database from outside the cluster execute the following comma {{- else if contains "ClusterIP" .Values.master.service.type }} - kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ template "redis.fullname" . }} {{ .Values.redisPort }}:{{ .Values.redisPort }} & + kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ template "redis.fullname" . }}-master {{ .Values.redisPort }}:{{ .Values.redisPort }} & redis-cli -h 127.0.0.1 -p {{ .Values.redisPort }} {{- if .Values.usePassword }} -a $REDIS_PASSWORD{{ end }} {{- end }}