Skip to content

Commit

Permalink
Merge pull request #62 from Allex1/main
Browse files Browse the repository at this point in the history
  • Loading branch information
pierluigilenoci authored Oct 26, 2021
2 parents eb96b38 + 9edf595 commit fdd0f9e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion helm/oauth2-proxy/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: oauth2-proxy
version: 5.0.0
version: 5.0.1
apiVersion: v2
appVersion: 7.1.3
home: https://oauth2-proxy.github.io/oauth2-proxy/
Expand Down
4 changes: 4 additions & 0 deletions helm/oauth2-proxy/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
apiVersion: v1
kind: ConfigMap
metadata:
{{- if .Values.config.annotations }}
annotations:
{{ toYaml .Values.config.annotations | indent 4 }}
{{- end }}
labels:
app: {{ template "oauth2-proxy.name" . }}
{{- include "oauth2-proxy.labels" . | indent 4 }}
Expand Down
4 changes: 4 additions & 0 deletions helm/oauth2-proxy/templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
apiVersion: v1
kind: Secret
metadata:
{{- if .Values.config.annotations }}
annotations:
{{ toYaml .Values.config.annotations | indent 4 }}
{{- end }}
labels:
app: {{ template "oauth2-proxy.name" . }}
{{- include "oauth2-proxy.labels" . | indent 4 }}
Expand Down
2 changes: 2 additions & 0 deletions helm/oauth2-proxy/values.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Oauth client configuration specifics
config:
# Add config annotations
annotations: {}
# OAuth client ID
clientID: "XXXXXXX"
# OAuth client secret
Expand Down

0 comments on commit fdd0f9e

Please sign in to comment.