From 45b82531105e2d856eb594b33bba8af476e89de8 Mon Sep 17 00:00:00 2001 From: saniyar-dev Date: Sun, 21 Jun 2026 04:55:00 +0330 Subject: [PATCH] fix: the only hard coded cluster domain name within plane-ce not including the enterprise chart --- charts/plane-ce/Chart.yaml | 4 ++-- charts/plane-ce/templates/config-secrets/live-env.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/plane-ce/Chart.yaml b/charts/plane-ce/Chart.yaml index 09c52b50..19603b90 100644 --- a/charts/plane-ce/Chart.yaml +++ b/charts/plane-ce/Chart.yaml @@ -5,13 +5,13 @@ description: Meet Plane. An open-source software development tool to manage issu type: application -version: 1.5.1 +version: 1.5.2 appVersion: "1.3.1" home: https://plane.so icon: https://plane.so/favicon/favicon-32x32.png sources: -- https://github.com/makeplane/plane + - https://github.com/makeplane/plane annotations: artifacthub.io/license: AGPL-3.0 diff --git a/charts/plane-ce/templates/config-secrets/live-env.yaml b/charts/plane-ce/templates/config-secrets/live-env.yaml index 038b5151..677ebdfe 100644 --- a/charts/plane-ce/templates/config-secrets/live-env.yaml +++ b/charts/plane-ce/templates/config-secrets/live-env.yaml @@ -8,7 +8,7 @@ metadata: stringData: LIVE_SERVER_SECRET_KEY: {{ .Values.env.live_server_secret_key | default "htbqvBJAgpm9bzvf3r4urJer0ENReatceh" | quote }} {{- if .Values.redis.local_setup }} - REDIS_URL: "redis://{{ .Release.Name }}-redis.{{ .Release.Namespace }}.svc.cluster.local:6379/" + REDIS_URL: "redis://{{ .Release.Name }}-redis.{{ .Release.Namespace }}.svc.{{ .Values.env.default_cluster_domain | default "cluster.local" }}:6379/" {{- else }} REDIS_URL: {{ .Values.env.remote_redis_url | default "" | quote }} {{- end }} @@ -21,7 +21,7 @@ metadata: namespace: {{ .Release.Namespace }} name: {{ .Release.Name }}-live-vars data: - API_BASE_URL: "http://{{ .Release.Name }}-api.{{ .Release.Namespace }}.svc.cluster.local:8000/" + API_BASE_URL: "http://{{ .Release.Name }}-api.{{ .Release.Namespace }}.svc.{{ .Values.env.default_cluster_domain | default "cluster.local" }}:8000/" LIVE_BASE_PATH: "/live" ---