Synchronize upstreamed folder to 1052ccf66

This commit is contained in:
bitnami-bot
2019-07-08 10:35:02 +00:00
parent 4624c9ee7e
commit e2e5bbd098
3 changed files with 9 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
apiVersion: v1
name: redis
version: 8.0.18
version: 8.0.19
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:

View File

@@ -68,6 +68,10 @@ spec:
- /bin/bash
- -c
- |
{{- if (eq .Values.securityContext.runAsUser 0.0) }}
useradd redis
chown -R redis {{ .Values.master.persistence.path }}
{{- end }}
if [[ -n $REDIS_PASSWORD_FILE ]]; then
password_aux=`cat ${REDIS_PASSWORD_FILE}`
export REDIS_PASSWORD=$password_aux

View File

@@ -76,6 +76,10 @@ spec:
- /bin/bash
- -c
- |
{{- if (eq .Values.securityContext.runAsUser 0.0) }}
useradd redis
chown -R redis {{ .Values.slave.persistence.path }}
{{- end }}
if [[ -n $REDIS_PASSWORD_FILE ]]; then
password_aux=`cat ${REDIS_PASSWORD_FILE}`
export REDIS_PASSWORD=$password_aux