[stable/redis] s/PostgreSQL/Redis (#2577)

* Bumping the chart version

    * stable/redis: add namespace option to NOTES.txt
This commit is contained in:
Cihangir SAVAS
2017-11-17 10:53:37 -05:00
committed by Matt Farina
parent 2202dcb078
commit 599b41c103
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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:
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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).
##