# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-License-Identifier: Apache-2.0 apiVersion: nvidia.com/v1alpha1 kind: DynamoGraphDeployment metadata: name: vllm-disagg-kvbm-tp2 spec: services: Frontend: componentType: frontend replicas: 1 extraPodSpec: mainContainer: image: nvcr.io/nvidia/ai-dynamo/vllm-runtime:my-tag VllmDecodeWorker: envFromSecret: hf-token-secret componentType: worker replicas: 1 resources: requests: gpu: "2" limits: gpu: "2" extraPodSpec: mainContainer: image: nvcr.io/nvidia/ai-dynamo/vllm-runtime:my-tag workingDir: /workspace/examples/backends/vllm command: - python3 - -m - dynamo.vllm args: - --model - Qwen/Qwen3-8B - --gpu-memory-utilization - "0.23" - --max-model-len - "32000" - --enforce-eager - --tensor-parallel-size - "2" VllmPrefillWorker: envFromSecret: hf-token-secret componentType: worker replicas: 1 resources: requests: gpu: "2" memory: "200Gi" limits: gpu: "2" memory: "250Gi" envs: - name: DYN_KVBM_CPU_CACHE_GB value: "100" extraPodSpec: mainContainer: image: nvcr.io/nvidia/ai-dynamo/vllm-runtime:my-tag workingDir: /workspace/examples/backends/vllm command: - python3 - -m - dynamo.vllm args: - --model - Qwen/Qwen3-8B - --is-prefill-worker - --gpu-memory-utilization - "0.23" - --max-model-len - "32000" - --enforce-eager - --connector - kvbm - nixl - --tensor-parallel-size - "2"