component_readme.md 1.67 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
---
orphan: true
---

# <Component>

<!-- 2-3 sentence overview of what this component does and its role in Dynamo -->

## Feature Matrix

| Feature | Status |
|---------|--------|
| Feature 1 | ✅ Supported |
| Feature 2 | 🚧 Experimental |
| Feature 3 | ❌ Not Supported |

## Quick Start

### Prerequisites

- <!-- List prerequisites -->

### Usage

```bash
# Add minimal usage example from existing docs
# Example pattern (from Router):
# python -m dynamo.frontend --router-mode kv --http-port 8000
```

### Kubernetes

```yaml
# Add DGDR example - use apiVersion: nvidia.com/v1alpha1
# Example pattern (from Router):
# apiVersion: nvidia.com/v1alpha1
# kind: DynamoGraphDeployment
# metadata:
#   name: <component>-deployment
# spec:
#   services:
#     ...
```

<!-- EXAMPLE: Filled-in Quick Start for Router would look like:

### Prerequisites

- Dynamo platform installed
- At least one backend worker running

### Usage

```bash
python -m dynamo.frontend --router-mode kv --http-port 8000
```

### Kubernetes

```yaml
apiVersion: nvidia.com/v1alpha1
kind: DynamoGraphDeployment
metadata:
  name: router-example
spec:
  graphs:
    - name: frontend
      replicas: 1
```
-->

## Configuration

| Parameter | Default | Description |
|-----------|---------|-------------|
| <!-- param --> | <!-- default --> | <!-- description --> |

## Next Steps

| Document | Path | Description |
|----------|------|-------------|
| `<Component> Guide` | `<component>_guide.md` | Deployment and configuration |
| `<Component> Examples` | `<component>_examples.md` | Usage examples |
| `<Component> Design` | `/docs/design_docs/<component>_design.md` | Architecture |

<!-- Convert table rows to markdown links -->