From 10f1679d5d44b8ee8d61a06dc10b5af99d51f899 Mon Sep 17 00:00:00 2001 From: zhangyale <1194926515@qq.com> Date: Wed, 20 Nov 2024 01:23:15 +0000 Subject: [PATCH 1/2] update euler-copilot-helm/chart/databases/templates/pgsql/pgsql-secret.yaml. Signed-off-by: zhangyale <1194926515@qq.com> --- .../chart/databases/templates/pgsql/pgsql-secret.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/euler-copilot-helm/chart/databases/templates/pgsql/pgsql-secret.yaml b/euler-copilot-helm/chart/databases/templates/pgsql/pgsql-secret.yaml index 9c83a32bc..69f6e2ccf 100644 --- a/euler-copilot-helm/chart/databases/templates/pgsql/pgsql-secret.yaml +++ b/euler-copilot-helm/chart/databases/templates/pgsql/pgsql-secret.yaml @@ -6,7 +6,7 @@ metadata: namespace: {{ .Release.Namespace }} type: Opaque stringData: - pgsql-password: {{ .Values.databases.mysql.password }} + pgsql-password: {{ .Values.databases.pgsql.password }} init.sql: | {{ tpl (.Files.Get "configs/pgsql/init.sql") . | indent 4 }} {{- end }} -- Gitee From 41e8fe79e70aba9f60fe8c5efb021df674002655 Mon Sep 17 00:00:00 2001 From: zhangyale <1194926515@qq.com> Date: Wed, 20 Nov 2024 01:29:18 +0000 Subject: [PATCH 2/2] update euler-copilot-helm/chart/witchaind/values.yaml. Signed-off-by: zhangyale <1194926515@qq.com> --- euler-copilot-helm/chart/witchaind/values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/euler-copilot-helm/chart/witchaind/values.yaml b/euler-copilot-helm/chart/witchaind/values.yaml index 9ca887d67..c599ee7f5 100644 --- a/euler-copilot-helm/chart/witchaind/values.yaml +++ b/euler-copilot-helm/chart/witchaind/values.yaml @@ -11,7 +11,7 @@ globals: # [必填] Postgresql设置 pgsql: # [必填] 主机 - host: "pgsql-service.euler-copilot.svc.cluster.local" + host: "pgsql-db-databases.euler-copilot.svc.cluster.local" # [必填] 端口 port: 5432 # [必填] 用户 @@ -134,7 +134,7 @@ witchaind: # 当类型为nodePort时,填写主机的端口号 nodePort: # [必填] Embedding模型URL - embedding: "https://60.204.250.91:8001/embedding" + embedding: "https://witchaind-backend-service-witchaind.euler-copilot.svc.cluster.local:8001/embedding" # [必填] 密钥设置 security: # [必填] CSRF密钥 -- Gitee