File tree Expand file tree Collapse file tree 4 files changed +10
-1
lines changed Expand file tree Collapse file tree 4 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 11name : oauth2-proxy
2- version : 6.9.1
2+ version : 6.9.2
33apiVersion : v2
44appVersion : 7.4.0
55home : https://oauth2-proxy.github.io/oauth2-proxy/
Original file line number Diff line number Diff line change @@ -120,6 +120,7 @@ Parameter | Description | Default
120120` extraEnv ` | key: value list of extra environment variables to give the binary | ` [] `
121121` extraVolumes ` | list of extra volumes | ` [] `
122122` extraVolumeMounts ` | list of extra volumeMounts | ` [] `
123+ ` extraContainers ` | List of extra containers to be added to the pod | ` [] `
123124` hostAlias.enabled ` | provide extra ip: hostname alias for network name resolution.
124125` hostAlias.ip ` | ` ip ` address ` hostAliases.hostname ` should resolve to.
125126` hostAlias.hostname ` | ` hostname ` associated to ` hostAliases.ip ` .
Original file line number Diff line number Diff line change @@ -253,6 +253,9 @@ spec:
253253{{- $securityContext := unset .Values.securityContext "enabled" }}
254254 securityContext :
255255 {{- toYaml $securityContext | nindent 10 }}
256+ {{- end }}
257+ {{- if .Values.extraContainers }}
258+ {{- toYaml .Values.extraContainers | nindent 6 }}
256259{{- end }}
257260 volumes :
258261{{- with .Values.config.google }}
Original file line number Diff line number Diff line change @@ -175,6 +175,11 @@ extraVolumeMounts: []
175175 # - mountPath: /etc/ssl/certs/
176176 # name: ca-bundle-cert
177177
178+ # Additional containers to be added to the pod.
179+ extraContainers : []
180+ # - name: my-sidecar
181+ # image: nginx:latest
182+
178183priorityClassName : " "
179184
180185# Host aliases, useful when working "on premise" where (public) DNS resolver does not know about my hosts.
You can’t perform that action at this time.
0 commit comments