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). |
Summary
Validation
Note
Low Risk
Documentation-only changes with no application or infrastructure code; risk is limited to doc accuracy and navigation.
Overview
Adds a self-managed Agent Memory documentation section for private-preview Kubernetes deployments, and wires it into the existing Agent Memory docs.
The Agent Memory overview “Redis Software (private preview)” tab now points to the new self-managed guide and states that a license key is required, instead of only a sales contact line.
The shared Data Plane API reference is retitled to Redis Agent Memory API, given nav weight, and its OpenAPI
infotext is generalized so authentication is described per deployment (including self-managed) rather than Cloud-only bearer keys.New pages under
self-managed/cover architecture (Data Plane, worker, optional Control Plane, Redis roles), two deployment modes (static stores vs Control Plane–managed stores), Helm walkthroughs, Data Plane YAML examples, authentication (admin token, agent keys, worker identity, gatewayX-Api-Key), curl API examples, operations (backups, rotation, upgrades, FIPS posture, network policy), troubleshooting, and a Control Plane OpenAPI spec for stores and API keys.Reviewed by Cursor Bugbot for commit 4bdb1dc. Bugbot is set up for automated code reviews on this repo. Configure here.