File tree Expand file tree Collapse file tree 5 files changed +12
-9
lines changed Expand file tree Collapse file tree 5 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 11dependencies:
22- name: redis
33 repository: https://charts.bitnami.com/bitnami
4- version: 16.4.0
5- digest: sha256:a6a2b7e848cc6c48dc175d8e6aa23651385f8d317f33bbb4fea97db822c3d445
6- generated: "2022-02-10T12:48:38.7766769 +01:00"
4+ version: 16.13.2
5+ digest: sha256:6fc589816ba4670d6f38cc724cba9b728d10a041a2cef4425a62c22f9a1aa5f6
6+ generated: "2022-12-20T18:22:05.758522 +01:00"
Original file line number Diff line number Diff line change 11name : oauth2-proxy
22version : 6.5.2
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 :
@@ -14,7 +14,7 @@ keywords:
1414 - redis
1515dependencies :
1616 - name : redis
17- version : ~16.4.0
17+ version : ~16.13.2
1818 repository : https://charts.bitnami.com/bitnami
1919 alias : redis
2020 condition : redis.enabled
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 1818 metadata :
1919 annotations :
2020 checksum/config : {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
21+ {{- if .Values.alphaConfig.enabled }}
22+ checksum/alpha-config : {{ include (print $.Template.BasePath "/configmap-alpha.yaml") . | sha256sum }}
23+ {{- end }}
2124 checksum/config-emails : {{ include (print $.Template.BasePath "/configmap-authenticated-emails-file.yaml") . | sha256sum }}
2225 checksum/secret : {{ include (print $.Template.BasePath "/secret.yaml") . | sha256sum }}
2326 checksum/google-secret : {{ include (print $.Template.BasePath "/google-secret.yaml") . | sha256sum }}
5255 {{- end }}
5356 containers :
5457 - name : {{ .Chart.Name }}
55- image : " {{ .Values.image.repository }}:{{ .Values.image.tag }}"
58+ image : " {{ .Values.image.repository }}:{{ .Values.image.tag | default (printf " v%s" .Chart.AppVersion) }}"
5659 imagePullPolicy : {{ .Values.image.pullPolicy }}
5760 args :
5861 {{- if .Values.alphaConfig.enabled }}
@@ -316,4 +319,3 @@ spec:
316319 topologySpreadConstraints :
317320 {{- toYaml . | nindent 8 }}
318321 {{- 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