From 3660d5a311fe0be34a31f708ae4e27a597765ed2 Mon Sep 17 00:00:00 2001 From: Guilhem Lettron Date: Tue, 23 Apr 2024 16:38:16 +0200 Subject: [PATCH 1/4] fix: deployment annotation indentation --- helm/oauth2-proxy/templates/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/oauth2-proxy/templates/deployment.yaml b/helm/oauth2-proxy/templates/deployment.yaml index 218bef4..8077aa3 100644 --- a/helm/oauth2-proxy/templates/deployment.yaml +++ b/helm/oauth2-proxy/templates/deployment.yaml @@ -6,7 +6,7 @@ metadata: {{- include "oauth2-proxy.labels" . | indent 4 }} {{- if .Values.deploymentAnnotations }} annotations: -{{ toYaml .Values.deploymentAnnotations | indent 8 }} +{{ toYaml .Values.deploymentAnnotations | indent 4 }} {{- end }} name: {{ template "oauth2-proxy.fullname" . }} namespace: {{ template "oauth2-proxy.namespace" $ }} From 419d1b03e7d516504aa6abe3b0153d5327bf2cd2 Mon Sep 17 00:00:00 2001 From: Noah <7409480+BitForger@users.noreply.github.com> Date: Thu, 30 May 2024 14:57:37 -0400 Subject: [PATCH 2/4] fix: use the correct default configmap name in deployment --- helm/oauth2-proxy/templates/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/oauth2-proxy/templates/deployment.yaml b/helm/oauth2-proxy/templates/deployment.yaml index a7a5e10..82029bb 100644 --- a/helm/oauth2-proxy/templates/deployment.yaml +++ b/helm/oauth2-proxy/templates/deployment.yaml @@ -136,7 +136,7 @@ spec: {{- if .Values.authenticatedEmailsFile.template }} - --authenticated-emails-file=/etc/oauth2-proxy/{{ .Values.authenticatedEmailsFile.template }} {{- else }} - - --authenticated-emails-file=/etc/oauth2-proxy/authenticated-emails-list + - --authenticated-emails-file=/etc/oauth2-proxy/{{ template "oauth2-proxy.fullname" . }}-accesslist {{- end }} {{- end }} {{- with .Values.config.google }} @@ -381,7 +381,7 @@ spec: {{- if .Values.authenticatedEmailsFile.template }} path: {{ .Values.authenticatedEmailsFile.template }} {{- else }} - path: authenticated-emails-list + path: {{ template "oauth2-proxy.fullname" . }}-accesslist {{- end }} name: configaccesslist {{- end }} From 76b0fd48b313d3d7f70a49586fc25ac5d49d3804 Mon Sep 17 00:00:00 2001 From: Pierluigi Lenoci Date: Fri, 31 May 2024 12:10:15 +0200 Subject: [PATCH 3/4] Update Chart.yaml --- helm/oauth2-proxy/Chart.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/helm/oauth2-proxy/Chart.yaml b/helm/oauth2-proxy/Chart.yaml index d567a5d..d1153e6 100644 --- a/helm/oauth2-proxy/Chart.yaml +++ b/helm/oauth2-proxy/Chart.yaml @@ -1,5 +1,5 @@ name: oauth2-proxy -version: 7.6.1 +version: 7.6.2 apiVersion: v2 appVersion: 7.6.0 home: https://oauth2-proxy.github.io/oauth2-proxy/ @@ -35,7 +35,7 @@ kubeVersion: ">=1.9.0-0" annotations: artifacthub.io/changes: | - kind: fixed - description: Fixed test for horizontal autoscaling feature + description: Fixed deployment annotation indentation links: - name: Github PR - url: https://github.com/oauth2-proxy/manifests/pull/211 + url: https://github.com/oauth2-proxy/manifests/pull/204 From 8732988241e69e8fccc30bc29360ac89c910c8f3 Mon Sep 17 00:00:00 2001 From: Pierluigi Lenoci Date: Fri, 31 May 2024 12:12:38 +0200 Subject: [PATCH 4/4] Update Chart.yaml --- helm/oauth2-proxy/Chart.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/helm/oauth2-proxy/Chart.yaml b/helm/oauth2-proxy/Chart.yaml index d567a5d..bd51a80 100644 --- a/helm/oauth2-proxy/Chart.yaml +++ b/helm/oauth2-proxy/Chart.yaml @@ -1,5 +1,5 @@ name: oauth2-proxy -version: 7.6.1 +version: 7.6.3 apiVersion: v2 appVersion: 7.6.0 home: https://oauth2-proxy.github.io/oauth2-proxy/ @@ -35,7 +35,7 @@ kubeVersion: ">=1.9.0-0" annotations: artifacthub.io/changes: | - kind: fixed - description: Fixed test for horizontal autoscaling feature + description: Fix the default configmap name in deployment links: - name: Github PR - url: https://github.com/oauth2-proxy/manifests/pull/211 + url: https://github.com/oauth2-proxy/manifests/pull/210