Skip to content

Commit fdd0f9e

Browse files
Merge pull request #62 from Allex1/main
2 parents eb96b38 + 9edf595 commit fdd0f9e

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
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.0
2+
version: 5.0.1
33
apiVersion: v2
44
appVersion: 7.1.3
55
home: https://oauth2-proxy.github.io/oauth2-proxy/

helm/oauth2-proxy/templates/configmap.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
apiVersion: v1
44
kind: ConfigMap
55
metadata:
6+
{{- if .Values.config.annotations }}
7+
annotations:
8+
{{ toYaml .Values.config.annotations | indent 4 }}
9+
{{- end }}
610
labels:
711
app: {{ template "oauth2-proxy.name" . }}
812
{{- include "oauth2-proxy.labels" . | indent 4 }}

helm/oauth2-proxy/templates/secret.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
apiVersion: v1
33
kind: Secret
44
metadata:
5+
{{- if .Values.config.annotations }}
6+
annotations:
7+
{{ toYaml .Values.config.annotations | indent 4 }}
8+
{{- end }}
59
labels:
610
app: {{ template "oauth2-proxy.name" . }}
711
{{- include "oauth2-proxy.labels" . | indent 4 }}

helm/oauth2-proxy/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Oauth client configuration specifics
22
config:
3+
# Add config annotations
4+
annotations: {}
35
# OAuth client ID
46
clientID: "XXXXXXX"
57
# OAuth client secret

0 commit comments

Comments
 (0)