diff --git a/charts/plane-ce/Chart.yaml b/charts/plane-ce/Chart.yaml index 7471bd85..27181462 100644 --- a/charts/plane-ce/Chart.yaml +++ b/charts/plane-ce/Chart.yaml @@ -11,7 +11,7 @@ appVersion: "1.4.0" 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 6d176ed7..51b684c3 100644 --- a/charts/plane-ce/templates/config-secrets/live-env.yaml +++ b/charts/plane-ce/templates/config-secrets/live-env.yaml @@ -10,7 +10,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 }} @@ -25,7 +25,7 @@ metadata: labels: {{- include "plane.commonLabels" $ | nindent 4 }} 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" ---