File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11name : oauth2-proxy
2- version : 6.5.2
2+ version : 6.6.0
33apiVersion : v2
4- appVersion : 7.3 .0
4+ appVersion : 7.4 .0
55home : https://oauth2-proxy.github.io/oauth2-proxy/
66description : A reverse proxy that provides authentication with Google, Github or other providers
77keywords :
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ Parameter | Description | Default
126126` httpScheme ` | ` http ` or ` https ` . ` name ` used for port on the deployment. ` httpGet ` port ` name ` and ` scheme ` used for ` liveness ` - and ` readinessProbes ` . ` name ` and ` targetPort ` used for the service. | ` http `
127127` image.pullPolicy ` | Image pull policy | ` IfNotPresent `
128128` image.repository ` | Image repository | ` quay.io/oauth2-proxy/oauth2-proxy `
129- ` image.tag ` | Image tag | ` v7.3.0 `
129+ ` image.tag ` | Image tag | ` "" ` (defaults to appVersion)
130130` imagePullSecrets ` | Specify image pull secrets | ` nil ` (does not add image pull secrets to deployed pods)
131131` ingress.enabled ` | Enable Ingress | ` false `
132132` ingress.className ` | name referencing IngressClass | ` nil `
Original file line number Diff line number Diff line change 5252 {{- end }}
5353 containers :
5454 - name : {{ .Chart.Name }}
55- image : " {{ .Values.image.repository }}:{{ .Values.image.tag }}"
55+ image : " {{ .Values.image.repository }}:{{ .Values.image.tag | default (printf " v%s" .Chart.AppVersion) }}"
5656 imagePullPolicy : {{ .Values.image.pullPolicy }}
5757 args :
5858 {{- if .Values.alphaConfig.enabled }}
@@ -316,4 +316,3 @@ spec:
316316 topologySpreadConstraints :
317317 {{- toYaml . | nindent 8 }}
318318 {{- end }}
319-
Original file line number Diff line number Diff line change @@ -57,7 +57,8 @@ alphaConfig:
5757
5858image :
5959 repository : " quay.io/oauth2-proxy/oauth2-proxy"
60- tag : " v7.3.0"
60+ # appVersion is used by default
61+ tag : " "
6162 pullPolicy : " IfNotPresent"
6263
6364# Optionally specify an array of imagePullSecrets.
You can’t perform that action at this time.
0 commit comments