Skip to content

Commit

Permalink
Update redis chart parameters
Browse files Browse the repository at this point in the history
The redis chart parameters have changed from 12 to 15, so update
the chart accordingly.

Signed-off-by: Wayne Sun <gsun@redhat.com>
  • Loading branch information
waynesun09 authored and idoB123 committed Jul 8, 2022
1 parent 43389ae commit 96af931
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 13 deletions.
2 changes: 1 addition & 1 deletion chart/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ spec:
- name: EMAILS_FROM_EMAIL
value: {{ .Values.fromEmail | quote }}
- name: REDIS_URI
value: redis://{{ .Release.Name }}-redis-master:{{ .Values.redis.redisPort }}
value: redis://{{ .Release.Name }}-redis-master:{{ .Values.redis.service.port }}
- name: REDIS_PASSWORD
valueFrom:
secretKeyRef:
Expand Down
34 changes: 22 additions & 12 deletions chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,28 @@ apiKeyValue: ""
redis:
installdep:
enable: true
password:
image:
registry: quay.io
cluster:
enabled: false
securityContext:
# readOnlyRootFilesystem: true
runAsNonRoot: true
fsGroup: null
containerSecurityContext:
runAsUser: null
redisPort: 6379
global:
imageRegistry: quay.io
redis:
password:
clusterDomain: cluster.local
master:
podSecurityContext:
# readOnlyRootFilesystem: true
runAsNonRoot: true
fsGroup: null
containerSecurityContext:
runAsUser: null
replica:
podSecurityContext:
# readOnlyRootFilesystem: true
runAsNonRoot: true
fsGroup: null
containerSecurityContext:
runAsUser: null
runAsNonRoot: true
service:
port: 6379

smtp:
endpoint:
Expand Down

0 comments on commit 96af931

Please sign in to comment.