Skip to content

Commit acb4190

Browse files
authored
fix google service-account.json secret generation (#65)
* fix google service-account.json secret generation * bump chart version to 5.0.3 * base64 encode the secret value as expected by k8s * bump chart version to 5.0.4
1 parent 61716bd commit acb4190

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

helm/oauth2-proxy/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: oauth2-proxy
2-
version: 5.0.3
2+
version: 5.0.4
33
apiVersion: v2
44
appVersion: 7.2.0
55
home: https://oauth2-proxy.github.io/oauth2-proxy/

helm/oauth2-proxy/templates/google-secret.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ metadata:
88
name: {{ template "oauth2-proxy.fullname" . }}-google
99
type: Opaque
1010
data:
11-
service-account.json: {{ .serviceAccountJson }}
11+
service-account.json: {{ .Values.config.google.serviceAccountJson | b64enc | quote }}
1212
{{- end -}}

0 commit comments

Comments
 (0)