File tree Expand file tree Collapse file tree 4 files changed +7
-1
lines changed Expand file tree Collapse file tree 4 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 11name : oauth2-proxy
2- version : 5.3 .0
2+ version : 5.4 .0
33apiVersion : v2
44appVersion : 7.2.0
55home : https://oauth2-proxy.github.io/oauth2-proxy/
Original file line number Diff line number Diff line change @@ -129,6 +129,7 @@ Parameter | Description | Default
129129` livenessProbe.initialDelaySeconds ` | number of seconds | 0
130130` livenessProbe.timeoutSeconds ` | number of seconds | 1
131131` nodeSelector ` | node labels for pod assignment | ` {} `
132+ ` deploymentAnnotations ` | annotations to add to the deployment | ` {} `
132133` podAnnotations ` | annotations to add to each pod | ` {} `
133134` podLabels ` | additional labesl to add to each pod | ` {} `
134135` podDisruptionBudget.enabled ` | Enabled creation of PodDisruptionBudget (only if replicaCount > 1) | true
Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ metadata:
44 labels :
55 app : {{ template "oauth2-proxy.name" . }}
66{{- include "oauth2-proxy.labels" . | indent 4 }}
7+ {{- if .Values.deploymentAnnotations }}
8+ annotations :
9+ {{ toYaml .Values.deploymentAnnotations | indent 8 }}
10+ {{- end }}
711 name : {{ template "oauth2-proxy.fullname" . }}
812spec :
913 replicas : {{ .Values.replicaCount }}
Original file line number Diff line number Diff line change @@ -191,6 +191,7 @@ securityContext:
191191 # allowPrivilegeEscalation: false
192192 # runAsUser: 2000
193193
194+ deploymentAnnotations : {}
194195podAnnotations : {}
195196podLabels : {}
196197replicaCount : 1
You can’t perform that action at this time.
0 commit comments