dev.yml 14.1 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

16
17
# Navigation structure matching https://docs.nvidia.com/dynamo/dev/
# Rebuilt to exactly replicate the rendered Sphinx sidebar
18
19
20
21
22
23
24
25
26

navigation:
  # ==================== Getting Started ====================
  - section: Getting Started
    contents:
      - page: Quickstart
        path: ../pages/getting-started/quickstart.md
      - page: Support Matrix
        path: ../pages/reference/support-matrix.md
27
28
29
30
      - page: Feature Matrix
        path: ../pages/reference/feature-matrix.md
      - page: Release Artifacts
        path: ../pages/reference/release-artifacts.md
31
32
33
34
35
36
37
      - page: Examples
        path: ../pages/getting-started/examples.md

  # ==================== Kubernetes Deployment ====================
  - section: Kubernetes Deployment
    contents:
      - section: Deployment Guide
38
        path: ../pages/kubernetes/README.md
39
40
41
42
43
        contents:
          - page: Detailed Installation Guide
            path: ../pages/kubernetes/installation-guide.md
          - page: Dynamo Operator
            path: ../pages/kubernetes/dynamo-operator.md
44
45
46
47
          - page: Service Discovery
            path: ../pages/kubernetes/service-discovery.md
          - page: Webhooks
            path: ../pages/kubernetes/webhooks.md
48
49
50
51
          - page: Minikube Setup
            path: ../pages/kubernetes/deployment/minikube.md
          - page: Managing Models with DynamoModel
            path: ../pages/kubernetes/deployment/dynamomodel-guide.md
52
53
          - page: Autoscaling
            path: ../pages/kubernetes/autoscaling.md
54
55
          - page: Inference Gateway (GAIE)
            path: ../pages/kubernetes/inference-gateway.md
56
          - section: Checkpointing
57
            path: ../pages/kubernetes/chrek/README.md
58
59
60
            contents:
              - page: Integration with Dynamo
                path: ../pages/kubernetes/chrek/dynamo.md
61
62
63
64
65
66
      - section: Observability (K8s)
        contents:
          - page: Metrics
            path: ../pages/kubernetes/observability/metrics.md
          - page: Logging
            path: ../pages/kubernetes/observability/logging.md
67
68
          - page: Operator Metrics
            path: ../pages/kubernetes/observability/operator-metrics.md
69
70
71
72
73
74
75
76
77
78
      - section: Multinode
        contents:
          - page: Multinode Deployments
            path: ../pages/kubernetes/deployment/multinode-deployment.md
          - page: Grove
            path: ../pages/kubernetes/grove.md

  # ==================== User Guides ====================
  - section: User Guides
    contents:
79
80
      - page: KV Cache Aware Routing
        path: ../pages/components/router/router-guide.md
81
      - page: Disaggregated Serving
82
83
84
        path: ../pages/features/disaggregated-serving/README.md
      - page: KV Cache Offloading
        path: ../pages/components/kvbm/kvbm-guide.md
85
      - page: Dynamo Benchmarking
86
        path: ../pages/benchmarks/benchmarking.md
87
88
89
90
91
92
93
94
95
96
97
      - section: Multimodality Support
        path: ../pages/features/multimodal/README.md
        contents:
          - page: vLLM Multimodal
            path: ../pages/features/multimodal/multimodal-vllm.md
          - page: TensorRT-LLM Multimodal
            path: ../pages/features/multimodal/multimodal-trtllm.md
          - page: SGLang Multimodal
            path: ../pages/features/multimodal/multimodal-sglang.md
      - page: Tool Calling
        path: ../pages/agents/tool-calling.md
98
99
      - page: SGLang for Agentic Workloads
        path: ../pages/backends/sglang/agents.md
100
101
      - page: LoRA Adapters
        path: ../pages/features/lora/README.md
102
      - section: Observability (Local)
103
        path: ../pages/observability/README.md
104
105
106
107
108
109
110
111
112
113
114
115
116
117
        contents:
          - page: Prometheus + Grafana Setup
            path: ../pages/observability/prometheus-grafana.md
          - page: Metrics
            path: ../pages/observability/metrics.md
          - page: Metrics Developer Guide
            path: ../pages/observability/metrics-developer-guide.md
          - page: Health Checks
            path: ../pages/observability/health-checks.md
          - page: Tracing
            path: ../pages/observability/tracing.md
          - page: Logging
            path: ../pages/observability/logging.md
      - section: Fault Tolerance
118
        path: ../pages/fault-tolerance/README.md
119
120
121
122
123
124
125
126
127
128
129
        contents:
          - page: Request Migration
            path: ../pages/fault-tolerance/request-migration.md
          - page: Request Cancellation
            path: ../pages/fault-tolerance/request-cancellation.md
          - page: Graceful Shutdown
            path: ../pages/fault-tolerance/graceful-shutdown.md
          - page: Request Rejection
            path: ../pages/fault-tolerance/request-rejection.md
          - page: Testing
            path: ../pages/fault-tolerance/testing.md
130
131
      - page: Writing Python Workers in Dynamo
        path: ../pages/development/backend-guide.md
132

133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
  # ==================== Backends ====================
  - section: Backends
    contents:
      - section: SGLang
        path: ../pages/backends/sglang/README.md
        contents:
          - page: Reference Guide
            path: ../pages/backends/sglang/sglang-reference-guide.md
          - page: Examples
            path: ../pages/backends/sglang/sglang-examples.md
          - page: Disaggregation
            path: ../pages/backends/sglang/sglang-disaggregation.md
          - page: Diffusion
            path: ../pages/backends/sglang/sglang-diffusion.md
          - page: Observability
            path: ../pages/backends/sglang/sglang-observability.md
      - page: TensorRT-LLM
        path: ../pages/backends/trtllm/README.md
      - page: vLLM
        path: ../pages/backends/vllm/README.md

154
155
156
  # ==================== Components ====================
  - section: Components
    contents:
157
158
159
160
161
162
163
      - section: Frontend
        path: ../pages/components/frontend/README.md
        contents:
          - page: Frontend Guide
            path: ../pages/components/frontend/frontend-guide.md
      - section: Router
        path: ../pages/components/router/README.md
164
        contents:
165
166
167
168
          - page: Router Guide
            path: ../pages/components/router/router-guide.md
          - page: Router Examples
            path: ../pages/components/router/router-examples.md
169
      - section: Planner
170
171
172
173
174
175
176
177
        path: ../pages/components/planner/README.md
        contents:
          - page: Planner Guide
            path: ../pages/components/planner/planner-guide.md
          - page: Planner Examples
            path: ../pages/components/planner/planner-examples.md
      - section: Profiler
        path: ../pages/components/profiler/README.md
178
        contents:
179
180
181
182
          - page: Profiler Guide
            path: ../pages/components/profiler/profiler-guide.md
          - page: Profiler Examples
            path: ../pages/components/profiler/profiler-examples.md
183
      - section: KVBM
184
        path: ../pages/components/kvbm/README.md
185
        contents:
186
187
188
189
190
191
192
193
194
195
196
197
198
199
          - page: KVBM Guide
            path: ../pages/components/kvbm/kvbm-guide.md

  # ==================== Integrations ====================
  - section: Integrations
    contents:
      - page: LMCache
        path: ../pages/integrations/lmcache-integration.md
      - page: SGLang HiCache
        path: ../pages/integrations/sglang-hicache.md
      - page: FlexKV
        path: ../pages/integrations/flexkv-integration.md
      - page: KV Events for Custom Engines
        path: ../pages/integrations/kv-events-custom-engines.md
200
201
202
203
204
205
206
207
208
209
210
211

  # ==================== Design Docs ====================
  - section: Design Docs
    contents:
      - page: Overall Architecture
        path: ../pages/design-docs/architecture.md
      - page: Architecture Flow
        path: ../pages/design-docs/dynamo-flow.md
      - page: Disaggregated Serving
        path: ../pages/design-docs/disagg-serving.md
      - page: Distributed Runtime
        path: ../pages/design-docs/distributed-runtime.md
212
213
      - page: Discovery Plane
        path: ../pages/design-docs/discovery-plane.md
214
      - page: Request Plane
215
        path: ../pages/design-docs/request-plane.md
216
217
      - page: Event Plane
        path: ../pages/design-docs/event-plane.md
218
219
220
221
222
223
      - page: Router Design
        path: ../pages/design-docs/router-design.md
      - page: KVBM Design
        path: ../pages/design-docs/kvbm-design.md
      - page: Planner Design
        path: ../pages/design-docs/planner-design.md
224

225
226
  # ==================== Blog ====================
  - section: Blog
227
228
    path: ../blogs/index.mdx
    slug: blog
229
230
231
232
    contents:
      - page: "Flash Indexer: Inter-Galactic KV Routing"
        path: ../blogs/flash-indexer/flash-indexer.md
        slug: flash-indexer
233

234
235
236
237
  # ==================== Hidden Pages ====================
  # Pages accessible via direct URL but not shown in main navigation.
  # Matches Sphinx hidden_toctree.rst -- pages linked from within content
  # but not in the sidebar.
238
239
240
  - section: Additional Resources
    hidden: true
    contents:
241
242
243
244
245
246
247
248
      # -- Development --
      - page: Runtime Guide
        path: ../pages/development/runtime-guide.md
      - page: Jail Stream
        path: ../pages/development/jail-stream.md
      # -- API Reference --
      - section: NIXL Connect API
        path: ../pages/api/nixl-connect/README.md
249
        contents:
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
          - page: Connector
            path: ../pages/api/nixl-connect/connector.md
          - page: Device
            path: ../pages/api/nixl-connect/device.md
          - page: Device Kind
            path: ../pages/api/nixl-connect/device-kind.md
          - page: Descriptor
            path: ../pages/api/nixl-connect/descriptor.md
          - page: Read Operation
            path: ../pages/api/nixl-connect/read-operation.md
          - page: Write Operation
            path: ../pages/api/nixl-connect/write-operation.md
          - page: Readable Operation
            path: ../pages/api/nixl-connect/readable-operation.md
          - page: Writable Operation
            path: ../pages/api/nixl-connect/writable-operation.md
          - page: Operation Status
            path: ../pages/api/nixl-connect/operation-status.md
          - page: RDMA Metadata
            path: ../pages/api/nixl-connect/rdma-metadata.md
      # -- Kubernetes (hidden sub-pages) --
      - page: API Reference (K8s)
        path: ../pages/kubernetes/api-reference.md
      - page: Creating Deployments
        path: ../pages/kubernetes/deployment/create-deployment.md
      - page: FluxCD
        path: ../pages/kubernetes/fluxcd.md
      - page: Model Caching with Fluid
        path: ../pages/kubernetes/model-caching-with-fluid.md
      # -- Reference --
      - page: Glossary
        path: ../pages/reference/glossary.md
      - page: Tuning Disaggregated Performance
        path: ../pages/performance/tuning.md
      # -- Backend detail pages --
      - section: vLLM Details
286
        contents:
287
288
289
290
291
292
293
294
295
296
          - page: DeepSeek-R1
            path: ../pages/backends/vllm/deepseek-r1.md
          - page: GPT-OSS
            path: ../pages/backends/vllm/gpt-oss.md
          - page: Multi-Node
            path: ../pages/backends/vllm/multi-node.md
          - page: Prometheus
            path: ../pages/backends/vllm/prometheus.md
          - page: Prompt Embeddings
            path: ../pages/backends/vllm/prompt-embeddings.md
297
298
          - page: vLLM-Omni
            path: ../pages/backends/vllm/vllm-omni.md
299
      - section: TensorRT-LLM Details
300
        contents:
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
          - page: Multinode Examples
            path: ../pages/backends/trtllm/multinode/multinode-examples.md
          - page: Llama4 + Eagle
            path: ../pages/backends/trtllm/llama4-plus-eagle.md
          - page: KV Cache Transfer
            path: ../pages/backends/trtllm/kv-cache-transfer.md
          - page: Gemma3 Sliding Window
            path: ../pages/backends/trtllm/gemma3-sliding-window-attention.md
          - page: GPT-OSS
            path: ../pages/backends/trtllm/gpt-oss.md
          - page: Prometheus
            path: ../pages/backends/trtllm/prometheus.md
      # -- Features (hidden sub-pages) --
      - section: Speculative Decoding
        path: ../pages/features/speculative-decoding/README.md
316
        contents:
317
318
319
320
321
322
323
324
325
326
327
328
329
330
          - page: Speculative Decoding with vLLM
            path: ../pages/features/speculative-decoding/speculative-decoding-vllm.md
      # -- Benchmarks --
      - page: KV Router A/B Testing
        path: ../pages/benchmarks/kv-router-ab-testing.md
      # -- Mocker --
      - page: Mocker
        path: ../pages/mocker/mocker.md
      # -- Docs README --
      - page: Building Documentation
        path: ../pages/README.md
      # -- Templates --
      - section: Templates
        path: ../pages/templates/README.md
331
332
        contents:
          - page: Backend Guide
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
            path: ../pages/templates/backend-guide.md
          - page: Backend README
            path: ../pages/templates/backend-readme.md
          - page: Component Design
            path: ../pages/templates/component-design.md
          - page: Component Examples
            path: ../pages/templates/component-examples.md
          - page: Component Guide
            path: ../pages/templates/component-guide.md
          - page: Component README
            path: ../pages/templates/component-readme.md
          - page: Feature Backend
            path: ../pages/templates/feature-backend.md
          - page: Feature README
            path: ../pages/templates/feature-readme.md
          - page: In-Code README
            path: ../pages/templates/incode-readme.md
          - page: Infrastructure README
            path: ../pages/templates/infrastructure-readme.md
          - page: Integration README
            path: ../pages/templates/integration-readme.md