Skip to content

Commit f382936

Browse files
committed
Merge remote-tracking branch 'upstream/main' into appProtocol
2 parents d33fc93 + 8befa07 commit f382936

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

helm/oauth2-proxy/Chart.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dependencies:
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"

helm/oauth2-proxy/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: oauth2-proxy
22
version: 6.5.2
33
apiVersion: v2
4-
appVersion: 7.3.0
4+
appVersion: 7.4.0
55
home: https://oauth2-proxy.github.io/oauth2-proxy/
66
description: A reverse proxy that provides authentication with Google, Github or other providers
77
keywords:
@@ -14,7 +14,7 @@ keywords:
1414
- redis
1515
dependencies:
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

helm/oauth2-proxy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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`

helm/oauth2-proxy/templates/deployment.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ spec:
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 }}
@@ -52,7 +55,7 @@ spec:
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-

helm/oauth2-proxy/values.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ alphaConfig:
5757

5858
image:
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.

0 commit comments

Comments
 (0)