[2/N] Upgrade nightly doc (#5534)

### What this PR does / why we need it?
Follow up https://github.com/vllm-project/vllm-ascend/pull/5479, upgrade
the corresponding doc for developers

- vLLM version: v0.13.0
- vLLM main:
45c1ca1ca1

Signed-off-by: wangli <wangli858794774@gmail.com>
This commit is contained in:
Li Wang
2025-12-31 09:11:42 +08:00
committed by GitHub
parent 98798d80a0
commit 2ee17e50a1
4 changed files with 266 additions and 73 deletions

View File

@@ -22,7 +22,7 @@ env_common:
NUMEXPR_MAX_THREADS: 128
DISAGGREGATED_PREFILL_PROXY_SCRIPT: "examples/disaggregated_prefill_v1/load_balance_proxy_server_example.py"
# For None kubernetes deployment, list the IPs of all nodes used in order as follow
# cluster_hosts: []
# cluster_hosts: [10.0.0.103, 10.0.0.139]
disaggregated_prefill:
enabled: true
prefiller_host_index: [0]

View File

@@ -340,6 +340,9 @@ class MultiNodeConfigLoader:
@staticmethod
def _resolve_cluster_ips(cfg: dict, num_nodes: int) -> list[str]:
if "cluster_hosts" in cfg and cfg["cluster_hosts"]:
logger.info(
"Using cluster_hosts from config. This typically indicates that your current environment is a non-Kubernetes environment."
)
ips = cfg["cluster_hosts"]
if len(ips) != num_nodes:
raise AssertionError("cluster_hosts size mismatch")

View File

@@ -26,7 +26,7 @@ print_section() {
}
print_failure() {
echo -e "${RED}${FAIL_TAG} ✗ ERROR: $1${NC}"
echo -e "${RED}${FAIL_TAG:-test_failed} ✗ ERROR: $1${NC}"
exit 1
}