Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions helm/oauth2-proxy/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: oauth2-proxy
version: 8.0.0
version: 8.0.1
apiVersion: v2
appVersion: 7.11.0
home: https://oauth2-proxy.github.io/oauth2-proxy/
Expand Down Expand Up @@ -31,8 +31,8 @@ maintainers:
kubeVersion: ">=1.16.0-0"
annotations:
artifacthub.io/changes: |
- kind: changed
description: Replace Redis chart by bitnami with dandydeveloper/redis-ha chart
- kind: fixed
description: Fixes how the fullname for the deployment / service of the newly introduced redis-ha subchart is generated
links:
- name: Github PR
url: https://github.com/oauth2-proxy/manifests/pull/335
url: https://github.com/oauth2-proxy/manifests/pull/338
1 change: 0 additions & 1 deletion helm/oauth2-proxy/ci/redis-standalone-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ sessionStorage:
# provision an instance of the redis-ha sub-chart
redis:
enabled: true
fullnameOverride: oauth2-proxy-redis

redisPassword: "foo"

Expand Down
2 changes: 1 addition & 1 deletion helm/oauth2-proxy/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Redis subcharts fullname
*/}}
{{- define "oauth2-proxy.redis.fullname" -}}
{{- if .Values.redis.enabled -}}
{{- include "redis-ha.fullname" (dict "Chart" (dict "Name" "redis-ha") "Release" .Release "Values" .Values.redis) -}}
{{- include "redis-ha.fullname" (dict "Chart" (dict "Name" "redis") "Release" .Release "Values" .Values.redis) -}}
{{- else -}}
{{ fail "attempting to use redis subcharts fullname, even though the subchart is not enabled. This will lead to misconfiguration" }}
{{- end -}}
Expand Down
Loading