Skip to content

Commit

Permalink
fix: add redis pwd in secret
Browse files Browse the repository at this point in the history
  • Loading branch information
NishaSharma14 committed Feb 27, 2023
1 parent b7271b8 commit 5232861
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/coconut-app/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.5
version: 0.1.6

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
5 changes: 5 additions & 0 deletions charts/coconut-app/templates/secret.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,9 @@ data:
#DB Secrets
{{- if .Values.rdkitcatridgepostgres.enabled }}
DB_PASSWORD: {{ required "A valid .Values.rdkitcatridgepostgres.auth.pgPassword entry required!" .Values.rdkitcatridgepostgres.auth.pgPassword |b64enc | quote }}
{{- end -}}

#Redis Secrets
{{- if .Values.redis.enabled }}
REDIS_PASSWORD: {{ required "A valid .Values.redis.auth.password entry required!" .Values.redis.auth.password |b64enc | quote }}
{{- end -}}

0 comments on commit 5232861

Please sign in to comment.