mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/redis] s/PostgreSQL/Redis (#2577)
* Bumping the chart version
* stable/redis: add namespace option to NOTES.txt
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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).
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user