diff --git a/stable/redis/Chart.yaml b/stable/redis/Chart.yaml index b64e668d96..a522aca290 100644 --- a/stable/redis/Chart.yaml +++ b/stable/redis/Chart.yaml @@ -1,5 +1,5 @@ name: redis -version: 1.0.2 +version: 1.0.3 appVersion: 4.0.2 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 12a7c29c60..74efbbb574 100644 --- a/stable/redis/templates/NOTES.txt +++ b/stable/redis/templates/NOTES.txt @@ -11,7 +11,7 @@ To connect to your Redis server: 1. Run a Redis pod that you can use as a client: - kubectl run {{ template "redis.fullname" . }}-client --rm --tty -i \ + kubectl run --namespace {{ .Release.Namespace }} {{ template "redis.fullname" . }}-client --rm --tty -i \ {{ if .Values.usePassword }} --env REDIS_PASSWORD=$REDIS_PASSWORD{{ end }} {{- if and (.Values.networkPolicy.enabled) (not .Values.networkPolicy.allowExternal) }}--labels="{{ template "redis.fullname" . }}-client=true" \{{- end }} --image {{ .Values.image }} -- bash diff --git a/stable/redis/values.yaml b/stable/redis/values.yaml index 53eaad6d09..707c887f99 100644 --- a/stable/redis/values.yaml +++ b/stable/redis/values.yaml @@ -85,7 +85,7 @@ networkPolicy: enabled: false ## The Policy model to apply. When set to false, only pods with the correct - ## client label will have network access to the port PostgreSQL is listening + ## client label will have network access to the port Redis is listening ## on. When true, Redis will accept connections from any source ## (with the correct destination port). ##