Skip to content

Commit

Permalink
Merge pull request #210 from BitForger/patch-1
Browse files Browse the repository at this point in the history
fix: use the correct default configmap name in deployment
  • Loading branch information
pierluigilenoci committed May 31, 2024
2 parents 2de706a + 1d270dd commit 7a6ec78
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions helm/oauth2-proxy/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: oauth2-proxy
version: 7.6.2
version: 7.6.3
apiVersion: v2
appVersion: 7.6.0
home: https://oauth2-proxy.github.io/oauth2-proxy/
Expand Down Expand Up @@ -35,7 +35,7 @@ kubeVersion: ">=1.9.0-0"
annotations:
artifacthub.io/changes: |
- kind: fixed
description: Fixed deployment annotation indentation
description: Fix the default configmap name in deployment
links:
- name: Github PR
url: https://github.com/oauth2-proxy/manifests/pull/204
url: https://github.com/oauth2-proxy/manifests/pull/210
4 changes: 2 additions & 2 deletions helm/oauth2-proxy/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ spec:
{{- if .Values.authenticatedEmailsFile.template }}
- --authenticated-emails-file=/etc/oauth2-proxy/{{ .Values.authenticatedEmailsFile.template }}
{{- else }}
- --authenticated-emails-file=/etc/oauth2-proxy/authenticated-emails-list
- --authenticated-emails-file=/etc/oauth2-proxy/{{ template "oauth2-proxy.fullname" . }}-accesslist
{{- end }}
{{- end }}
{{- with .Values.config.google }}
Expand Down Expand Up @@ -381,7 +381,7 @@ spec:
{{- if .Values.authenticatedEmailsFile.template }}
path: {{ .Values.authenticatedEmailsFile.template }}
{{- else }}
path: authenticated-emails-list
path: {{ template "oauth2-proxy.fullname" . }}-accesslist
{{- end }}
name: configaccesslist
{{- end }}
Expand Down

0 comments on commit 7a6ec78

Please sign in to comment.