3b0725a5 by Adam Heath

Allow the oauth2-proxy image to be set, and update it from 7.2.1 to

7.3.0.
1 parent 611a2fde
...@@ -31,7 +31,7 @@ spec: ...@@ -31,7 +31,7 @@ spec:
31 spec: 31 spec:
32 containers: 32 containers:
33 - name: oauth2-proxy 33 - name: oauth2-proxy
34 image: "quay.io/oauth2-proxy/oauth2-proxy:v7.2.1" 34 image: oauth2-proxy
35 imagePullPolicy: "IfNotPresent" 35 imagePullPolicy: "IfNotPresent"
36 envFrom: 36 envFrom:
37 - configMapRef: 37 - configMapRef:
......
1 oauth2_proxy: 1 oauth2_proxy:
2 enabled: true 2 enabled: true
3 namespace: default 3 namespace: default
4 image: quay.io/oauth2-proxy/oauth2-proxy:v7.3.0
4 name: "" 5 name: ""
5 config: 6 config:
6 OAUTH2_PROXY_UPSTREAMS: "" 7 OAUTH2_PROXY_UPSTREAMS: ""
......
...@@ -9,7 +9,9 @@ releases: ...@@ -9,7 +9,9 @@ releases:
9 condition: oauth2_proxy.enabled 9 condition: oauth2_proxy.enabled
10 values: 10 values:
11 - nameSuffix: -{{ $.Values.oauth2_proxy.name }} 11 - nameSuffix: -{{ $.Values.oauth2_proxy.name }}
12 - {{ .Values.oauth2_proxy.config | toYaml | nindent 8 }} 12 images:
13 - name: oauth2-proxy
14 newName: {{ $.Values.oauth2_proxy.image | quote }}
13 jsonPatches: 15 jsonPatches:
14 - target: 16 - target:
15 version: v1 17 version: v1
......