From 088d04b7477729510cf67fa8763d1e240a922287 Mon Sep 17 00:00:00 2001 From: Marcin Jasion Date: Fri, 21 Jul 2023 20:04:45 +0200 Subject: [PATCH] fix(configmap): Remove condition from SOCIAL_AUTH_ALLOWED_REDIRECT_HOSTS --- charts/studio/Chart.yaml | 2 +- charts/studio/README.md | 2 +- charts/studio/templates/configmap-studio.yaml | 4 ---- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/charts/studio/Chart.yaml b/charts/studio/Chart.yaml index 3c1f0c44..cb96dcb4 100644 --- a/charts/studio/Chart.yaml +++ b/charts/studio/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.2.14 +version: 0.2.16 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/studio/README.md b/charts/studio/README.md index f69ca5ab..50bbd853 100644 --- a/charts/studio/README.md +++ b/charts/studio/README.md @@ -1,6 +1,6 @@ # studio -![Version: 0.2.14](https://img.shields.io/badge/Version-0.2.14-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.9.1](https://img.shields.io/badge/AppVersion-v2.9.1-informational?style=flat-square) +![Version: 0.2.16](https://img.shields.io/badge/Version-0.2.16-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.9.1](https://img.shields.io/badge/AppVersion-v2.9.1-informational?style=flat-square) A Helm chart for Kubernetes diff --git a/charts/studio/templates/configmap-studio.yaml b/charts/studio/templates/configmap-studio.yaml index ab0a3179..d34e0ad3 100644 --- a/charts/studio/templates/configmap-studio.yaml +++ b/charts/studio/templates/configmap-studio.yaml @@ -109,11 +109,7 @@ data: SOCIAL_AUTH_REDIRECT_IS_HTTPS: "False" - {{- if .Values.global.ingress.enabled }} SOCIAL_AUTH_ALLOWED_REDIRECT_HOSTS: "studio-ui.{{ .Release.Namespace }}.svc.cluster.local:{{ .Values.studioUi.service.port }},studio-backend.{{ .Release.Namespace }}.svc.cluster.local:{{ .Values.studioBackend.service.port }},{{ .Values.global.host }}" - {{- else }} - SOCIAL_AUTH_ALLOWED_REDIRECT_HOSTS: "studio-ui.{{ .Release.Namespace }}.svc.cluster.local:{{ .Values.studioUi.service.port }},studio-backend.{{ .Release.Namespace }}.svc.cluster.local:{{ .Values.studioBackend.service.port }}" - {{- end }} {{- $dvcx := .Values.global.dvcx | default dict }} DQL_ENABLED: {{ $dvcx.enabled | default "False" | quote }}