From aa04bd1037da8a9955937b206a592b9e43cdb11c Mon Sep 17 00:00:00 2001 From: Ethan-Zhang Date: Tue, 21 Oct 2025 16:45:43 +0800 Subject: [PATCH] =?UTF-8?q?Fix:=20=E8=A1=A5=E5=85=85values=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deploy/chart/euler_copilot/values.yaml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/deploy/chart/euler_copilot/values.yaml b/deploy/chart/euler_copilot/values.yaml index f5e9c4a9f..abb4c318f 100644 --- a/deploy/chart/euler_copilot/values.yaml +++ b/deploy/chart/euler_copilot/values.yaml @@ -68,14 +68,12 @@ models: login: # [必填] 登录提供者类型:["authhub", "authelia"] provider: authhub - # AuthHub客户端ID设置,仅在provider为authhub时有效 client: # [必填] 客户端ID id: # [必填] 客户端密钥 secret: - # Authelia OIDC设置,仅在provider为authelia时有效 authelia: # [必填] OIDC客户端ID @@ -87,13 +85,20 @@ login: domain: # [必填] EulerCopilot的web前端url;默认为http://127.0.0.1:30080 euler_copilot: - # [必填] 鉴权服务["authhub", "authelia"] - auth_service: - # [选填] authhub的web前端url;默认为http://127.0.0.1:30081 + # [必填] authhub的web前端url;默认为http://127.0.0.1:30081 + # 如果不设置,将自动使用 euler_copilot + authhub_port 构建 authhub: - # [选填] authelia的web前端url;默认为http://127.0.0.1:30091 + # [必填] authelia的web前端url;默认为http://127.0.0.1:30091 + # 如果不设置,将自动使用 euler_copilot + authelia_port 构建 authelia: +# 服务端口设置(用于自动构建域名) +ports: + # AuthHub web服务端口;默认为30081 + authhub: 30081 + # Authelia服务端口;默认为30091 + authelia: 30091 + # 存储设置 storage: # 语义接口 -- Gitee