Skip to content

Commit

Permalink
Fixed OAUTH2_PROXY_REDIS_PASSWORD env variable (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
pierluigilenoci authored May 13, 2021
1 parent 2d64e89 commit 2665514
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion helm/oauth2-proxy/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: oauth2-proxy
version: 3.2.10
version: 3.2.11
apiVersion: v2
appVersion: 5.1.0
home: https://oauth2-proxy.github.io/oauth2-proxy/
Expand Down
2 changes: 1 addition & 1 deletion helm/oauth2-proxy/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ spec:
- name: OAUTH2_PROXY_REDIS_PASSWORD
valueFrom:
secretKeyRef:
name: {{ template "oauth2-proxy.fullname" . }}-redis-access
name: {{ if .Values.sessionStorage.redis.existingSecret }} {{ .Values.sessionStorage.redis.existingSecret }}{{ else }} {{ template "oauth2-proxy.fullname" . }}-redis-access{{ end }}
key: redis-password
{{- end }}
{{- if eq (default "" .Values.sessionStorage.redis.clientType) "standalone" }}
Expand Down

0 comments on commit 2665514

Please sign in to comment.