From 4d780a8b016e9a8adf7561e918fdbd0ddbb937b2 Mon Sep 17 00:00:00 2001 From: Li Wang Date: Fri, 23 Jan 2026 09:53:32 +0800 Subject: [PATCH] [Misc] Revert "[Misc] Bump mooncake version to v0.3.8.post1 (#6110)" (#6164) ### What this PR does / why we need it? The new version of moonkcake lead to the image build failure. see https://github.com/vllm-project/vllm-ascend/actions/runs/21236469259/job/61105443733, we should revert it first ### Does this PR introduce _any_ user-facing change? ### How was this patch tested? - vLLM version: v0.13.0 - vLLM main: https://github.com/vllm-project/vllm/commit/d68209402ddab3f54a09bc1f4de9a9495a283b60 Signed-off-by: wangli --- Dockerfile | 2 +- Dockerfile.a3 | 2 +- Dockerfile.a3.openEuler | 2 +- Dockerfile.openEuler | 2 +- docs/source/tutorials/pd_colocated_mooncake_multi_instance.md | 2 +- docs/source/tutorials/pd_disaggregation_mooncake_multi_node.md | 2 +- docs/source/tutorials/pd_disaggregation_mooncake_single_node.md | 2 +- docs/source/user_guide/feature_guide/kv_pool.md | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 188aace0..c6ec255c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ FROM quay.io/ascend/cann:8.5.0-910b-ubuntu22.04-py3.11 ARG PIP_INDEX_URL="https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple" -ARG MOONCAKE_TAG="v0.3.8.post1" +ARG MOONCAKE_TAG="v0.3.7.post2" ARG SOC_VERSION="ascend910b1" # Define environments diff --git a/Dockerfile.a3 b/Dockerfile.a3 index fbecd5d5..768f861a 100644 --- a/Dockerfile.a3 +++ b/Dockerfile.a3 @@ -18,7 +18,7 @@ FROM quay.io/ascend/cann:8.5.0-a3-ubuntu22.04-py3.11 ARG PIP_INDEX_URL="https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple" -ARG MOONCAKE_TAG=v0.3.8.post1 +ARG MOONCAKE_TAG=v0.3.7.post2 ARG SOC_VERSION="ascend910_9391" COPY . /vllm-workspace/vllm-ascend/ diff --git a/Dockerfile.a3.openEuler b/Dockerfile.a3.openEuler index 6f9f9569..d66e031e 100644 --- a/Dockerfile.a3.openEuler +++ b/Dockerfile.a3.openEuler @@ -18,7 +18,7 @@ FROM quay.io/ascend/cann:8.5.0-a3-openeuler24.03-py3.11 ARG PIP_INDEX_URL="https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple" -ARG MOONCAKE_TAG="v0.3.8.post1" +ARG MOONCAKE_TAG="v0.3.7.post2" ARG SOC_VERSION="ascend910_9391" ENV SOC_VERSION=$SOC_VERSION \ diff --git a/Dockerfile.openEuler b/Dockerfile.openEuler index c884fb9c..3414de5a 100644 --- a/Dockerfile.openEuler +++ b/Dockerfile.openEuler @@ -18,7 +18,7 @@ FROM quay.io/ascend/cann:8.5.0-910b-openeuler24.03-py3.11 ARG PIP_INDEX_URL="https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple" -ARG MOONCAKE_TAG="v0.3.8.post1" +ARG MOONCAKE_TAG="v0.3.7.post2" ARG SOC_VERSION="ascend910b1" ENV SOC_VERSION=$SOC_VERSION \ diff --git a/docs/source/tutorials/pd_colocated_mooncake_multi_instance.md b/docs/source/tutorials/pd_colocated_mooncake_multi_instance.md index 0ea3bb64..c6983779 100644 --- a/docs/source/tutorials/pd_colocated_mooncake_multi_instance.md +++ b/docs/source/tutorials/pd_colocated_mooncake_multi_instance.md @@ -121,7 +121,7 @@ Moonshot AI. Installation and compilation guide: First, obtain the Mooncake project using the following command: ```bash -git clone -b v0.3.8.post1 --depth 1 https://github.com/kvcache-ai/Mooncake.git +git clone -b v0.3.7.post2 --depth 1 https://github.com/kvcache-ai/Mooncake.git cd Mooncake git submodule update --init --recursive ``` diff --git a/docs/source/tutorials/pd_disaggregation_mooncake_multi_node.md b/docs/source/tutorials/pd_disaggregation_mooncake_multi_node.md index 74745ef4..c9472c49 100644 --- a/docs/source/tutorials/pd_disaggregation_mooncake_multi_node.md +++ b/docs/source/tutorials/pd_disaggregation_mooncake_multi_node.md @@ -177,7 +177,7 @@ Mooncake is the serving platform for Kimi, a leading LLM service provided by Moo First, we need to obtain the Mooncake project. Refer to the following command: ```shell -git clone -b v0.3.8.post1 --depth 1 https://github.com/kvcache-ai/Mooncake.git +git clone -b v0.3.7.post2 --depth 1 https://github.com/kvcache-ai/Mooncake.git ``` (Optional) Replace go install url if the network is poor diff --git a/docs/source/tutorials/pd_disaggregation_mooncake_single_node.md b/docs/source/tutorials/pd_disaggregation_mooncake_single_node.md index 112b49b6..d9eedd18 100644 --- a/docs/source/tutorials/pd_disaggregation_mooncake_single_node.md +++ b/docs/source/tutorials/pd_disaggregation_mooncake_single_node.md @@ -98,7 +98,7 @@ Mooncake is the serving platform for Kimi, a leading LLM service provided by Moo First, we need to obtain the Mooncake project. Refer to the following command: ```shell -git clone -b v0.3.8.post1 --depth 1 https://github.com/kvcache-ai/Mooncake.git +git clone -b v0.3.7.post2 --depth 1 https://github.com/kvcache-ai/Mooncake.git ``` (Optional) Replace go install url if the network is poor diff --git a/docs/source/user_guide/feature_guide/kv_pool.md b/docs/source/user_guide/feature_guide/kv_pool.md index 88494d00..8e919e73 100644 --- a/docs/source/user_guide/feature_guide/kv_pool.md +++ b/docs/source/user_guide/feature_guide/kv_pool.md @@ -42,7 +42,7 @@ export PYTHONHASHSEED=0 First, we need to obtain the Mooncake project. Refer to the following command: ```shell - git clone -b v0.3.8.post1 --depth 1 https://github.com/kvcache-ai/Mooncake.git + git clone -b v0.3.7.post2 --depth 1 https://github.com/kvcache-ai/Mooncake.git ``` (Optional) Replace go install url if the network is poor