Add self-managed Agent Memory docs#3653
Conversation
|
Hi @n-valchev thanks for this PR, here is the feedback on technical accuracy, otherwise it looks good to me: Issue 1 — Control Plane embedding config is incomplete (worth clarifying) embedding: embedding: Issue 2 — shasum produces SHA-1, not SHA-256 LICENSE_CHECKSUM="$(shasum ./license | awk '{print $1}')" Recommendation: use sha256sum ./license | awk '{print $1}' or shasum -a 256 ./license | awk '{print $1}'. Issue 3 — helm repo add --force-update requires Helm 3.7.2+ helm repo add redis-ai https://helm.redis.io/ai --force-update Recommendation: Either raise the Helm minimum version in prerequisites to 3.7.2, or drop --force-update (it's not required — helm repo update redis-ai handles the refresh). |
|
Thanks @mich-elle-luna. I've addressed the comments. |
Summary
Validation
Note
Low Risk
Documentation-only changes with no application code; security guidance is descriptive for operators.
Overview
Adds a self-managed Agent Memory doc tree for private-preview Kubernetes deployments, covering planning, prerequisites, Data Plane config, Helm walkthroughs for static stores vs Control Plane–managed stores, authentication (admin token, agent keys, worker identity, gateways), curl API examples, operations, and troubleshooting.
The Agent Memory overview Redis Software tab now links to this section and notes the license requirement. The shared Data Plane API page is retitled Redis Agent Memory API (from LangCache), and the OpenAPI spec title/description are generalized for cloud and self-managed auth. A new Control Plane API reference page ships with an OpenAPI document for store and agent-key admin endpoints.
Reviewed by Cursor Bugbot for commit 3ec1dd3. Bugbot is set up for automated code reviews on this repo. Configure here.