Skip to content

Commit 7a6ec78

Browse files
Merge pull request #210 from BitForger/patch-1
fix: use the correct default configmap name in deployment
2 parents 2de706a + 1d270dd commit 7a6ec78

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

helm/oauth2-proxy/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: oauth2-proxy
2-
version: 7.6.2
2+
version: 7.6.3
33
apiVersion: v2
44
appVersion: 7.6.0
55
home: https://oauth2-proxy.github.io/oauth2-proxy/
@@ -35,7 +35,7 @@ kubeVersion: ">=1.9.0-0"
3535
annotations:
3636
artifacthub.io/changes: |
3737
- kind: fixed
38-
description: Fixed deployment annotation indentation
38+
description: Fix the default configmap name in deployment
3939
links:
4040
- name: Github PR
41-
url: https://github.com/oauth2-proxy/manifests/pull/204
41+
url: https://github.com/oauth2-proxy/manifests/pull/210

helm/oauth2-proxy/templates/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ spec:
136136
{{- if .Values.authenticatedEmailsFile.template }}
137137
- --authenticated-emails-file=/etc/oauth2-proxy/{{ .Values.authenticatedEmailsFile.template }}
138138
{{- else }}
139-
- --authenticated-emails-file=/etc/oauth2-proxy/authenticated-emails-list
139+
- --authenticated-emails-file=/etc/oauth2-proxy/{{ template "oauth2-proxy.fullname" . }}-accesslist
140140
{{- end }}
141141
{{- end }}
142142
{{- with .Values.config.google }}
@@ -381,7 +381,7 @@ spec:
381381
{{- if .Values.authenticatedEmailsFile.template }}
382382
path: {{ .Values.authenticatedEmailsFile.template }}
383383
{{- else }}
384-
path: authenticated-emails-list
384+
path: {{ template "oauth2-proxy.fullname" . }}-accesslist
385385
{{- end }}
386386
name: configaccesslist
387387
{{- end }}

0 commit comments

Comments
 (0)