From 292d5899df82d740ad01c741a2abe9baa76d3351 Mon Sep 17 00:00:00 2001 From: Travis Groth Date: Thu, 17 Mar 2022 09:23:17 -0400 Subject: [PATCH] fix: remove authenticate TLS workaround from non-ingress definition (#280) --- charts/pomerium/Chart.yaml | 2 +- charts/pomerium/templates/_helpers.tpl | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/charts/pomerium/Chart.yaml b/charts/pomerium/Chart.yaml index 604fa793..9920339c 100644 --- a/charts/pomerium/Chart.yaml +++ b/charts/pomerium/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: pomerium -version: 30.1.1 +version: 30.1.2 appVersion: 0.16.4 home: http://www.pomerium.com/ icon: https://www.pomerium.com/img/icon.svg diff --git a/charts/pomerium/templates/_helpers.tpl b/charts/pomerium/templates/_helpers.tpl index 7029ca92..c6ac20b2 100644 --- a/charts/pomerium/templates/_helpers.tpl +++ b/charts/pomerium/templates/_helpers.tpl @@ -492,9 +492,7 @@ routes: {{- if and .Values.authenticate.proxied (not .Values.ingressController.enabled) }} - from: https://{{ include "pomerium.authenticate.hostname" . }} to: {{ printf "%s://%s.%s.svc.cluster.local" (include "pomerium.httpTrafficPort.name" .) (include "pomerium.authenticate.fullname" .) .Release.Namespace }} - preserve_host_header: true allow_public_unauthenticated_access: true - tls_server_name: {{ include "pomerium.authenticate.hostname" . }} {{- end }} {{- end }} {{- end -}}