From 8f3741fc4908ed41c8e8cb859b710811f63dd04d Mon Sep 17 00:00:00 2001 From: Zexi Li Date: Mon, 16 Mar 2026 15:44:15 +0800 Subject: [PATCH] =?UTF-8?q?chore(llm):=20=E8=B0=83=E6=95=B4=20openclaw=20?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E9=95=9C=E5=83=8F=E5=90=8D=E4=B8=8E=20tag=20?= =?UTF-8?q?=E7=94=9F=E6=88=90=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/apis/onecloud/v1alpha1/defaults.go | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/pkg/apis/onecloud/v1alpha1/defaults.go b/pkg/apis/onecloud/v1alpha1/defaults.go index daf51750f..780e365bd 100644 --- a/pkg/apis/onecloud/v1alpha1/defaults.go +++ b/pkg/apis/onecloud/v1alpha1/defaults.go @@ -89,9 +89,16 @@ const ( ) const ( - DefaultOllamaImageName = "ollama-0.15.1" - DefaultComfyuiImageName = "comfyui-boot-cu128-slim" - DefaultOpenclawImageName = "openclaw-20260313.5" + DefaultOpenclawImageTag = "v2026.3.13-1-20260313.0" +) + +const ( + DefaultOllamaImageName = "ollama-0.15.1" + DefaultComfyuiImageName = "comfyui-boot-cu128-slim" +) + +var ( + DefaultOpenclawImageName = fmt.Sprintf("openclaw-%s", DefaultOpenclawImageTag) ) var ( @@ -107,11 +114,11 @@ var ( newLLMImage("squid-5.2-22.04_beta", "registry.cn-beijing.aliyuncs.com/cloudpods/squid", "5.2-22.04_beta", "dify"), newLLMImage("weaviate-1.19.0", "registry.cn-beijing.aliyuncs.com/cloudpods/weaviate", "1.19.0", "dify"), newLLMImage(DefaultComfyuiImageName, "registry.cn-beijing.aliyuncs.com/cloudpods/comfyui-boot", "cu128-slim", "comfyui"), - newLLMImage(DefaultOpenclawImageName, "registry.cn-beijing.aliyuncs.com/cloudpods/openclaw", "ubu-20260313.5", "openclaw"), + newLLMImage(DefaultOpenclawImageName, "registry.cn-beijing.aliyuncs.com/zexi/openclaw", DefaultOpenclawImageTag, "openclaw"), } DefaultLLMSku = []llmapi.LLMSkuCreateInput{ newLLMSku("ollama-4c4g", 4, 4096, 40960, 1000, DefaultOllamaImageName, "ollama"), - newLLMSku("openclaw-4c4g", 4, 4096, 40960, 1000, DefaultOpenclawImageName, "openclaw"), + newLLMSku(fmt.Sprintf("%s-4c4g", DefaultOpenclawImageName), 4, 4096, 40960, 1000, DefaultOpenclawImageName, "openclaw"), newLLMSku("comfyui-8c16g", 8, 16384, 40960, 1000, DefaultComfyuiImageName, "comfyui"), } )