You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: NEXT_STEPS.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@
8
8
## Immediate Actions
9
9
-[x]**Review Documentation**: Verify the newly created user docs in `docs/` align with the implementation and are clear.
10
10
-[x]**M42.4 (Audit)**: Updated `docs/index.md` to link all guides (`web-ui.md`, `cli.md`) and verified `docs/installation.md` and `docs/configuration.md`.
11
+
-[x]**M42.5 (Improvement)**: Enhanced `docs/installation.md`, switched to YAML in `docs/configuration.md` & `docs/guides/deployment.md`, and implemented YAML support in `pkg/engine`.
11
12
-[x]**M42.3 (Refined)**: Added Policy Guide and moved/refined Deployment Guide.
12
13
-[x]**SDK Docs**: Refreshed JS, Python, and Go SDK documentation to remove draft warnings and match implementation.
13
14
-[ ]**Phase 16 Continues**: Run advanced simulation scenarios (Epic 28) or focus on release prep.
If you run multiple replicas of `ratelord` (e.g., 3 sidecars for 3 app replicas), **state is isolated per pod**.
195
195
- **Pros**: Zero coordination latency.
196
196
- **Cons**: Global limits (e.g., "1000 req/min across all pods") effectively become `N * Limit`.
197
-
- **Mitigation**: Use `policy.json` to define *per-instance* limits, or divide your global quota by the expected replica count ($Limit_{local} = Limit_{global} / N$).
197
+
- **Mitigation**: Use `policy.yaml` to define *per-instance* limits, or divide your global quota by the expected replica count ($Limit_{local} = Limit_{global} / N$).
198
198
199
199
---
200
200
201
201
## 6. Configuration & Secrets Management
202
202
203
-
### Policy (`policy.json`)
203
+
### Policy (`policy.yaml`)
204
204
- Treat as code. Version control it.
205
205
- **Updates**:
206
206
- **K8s**: Update ConfigMap -> Wait for volume update -> Send `SIGHUP` to sidecar (or let K8s restart it).
Copy file name to clipboardExpand all lines: docs/installation.md
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,9 +14,18 @@ go install github.com/rmax-ai/ratelord/cmd/ratelord-d@latest
14
14
go install github.com/rmax-ai/ratelord/cmd/ratelord-tui@latest
15
15
```
16
16
17
+
### Verification
18
+
19
+
Verify the installation by checking the versions:
20
+
21
+
```bash
22
+
ratelord version
23
+
ratelord-d --version
24
+
```
25
+
17
26
### From Releases
18
27
19
-
Download pre-compiled binaries from the [GitHub Releases](https://github.com/rmax-ai/ratelord/releases) page.
28
+
Download pre-compiled binaries for your platform (macOS, Linux, Windows) from the [GitHub Releases](https://github.com/rmax-ai/ratelord/releases) page.
0 commit comments