docs(deploy): address review — consistent placeholders, complete ECS command

The ECS day-2 apply gains its required --config flag (the image ships no
omnigraph.yaml, so the CLI cannot locate the cluster dir without it), and
the docker-exec example uses the <you> placeholder convention instead of a
real-looking actor name.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
aaltshuler 2026-06-10 22:54:26 +03:00
parent 6b3ae7ac79
commit f165145b63

View file

@ -67,7 +67,7 @@ so the day-2 loop runs in-container with no `omnigraph.yaml`:
```bash
docker exec -it <container> sh -c \
'omnigraph cluster apply --as andrew --config /var/lib/omnigraph/cluster'
'omnigraph cluster apply --as <you> --config /var/lib/omnigraph/cluster'
# then restart the container to pick up the applied state
```
@ -81,7 +81,8 @@ docker exec -it <container> sh -c \
(or the `--features aws` build's native Secrets Manager source).
4. ALB in front for TLS; target the container's 8080 with `/healthz` checks.
5. Day-2: ECS exec into the task → edit/upload config on the volume →
`omnigraph cluster apply --as <you>` → force a new deployment (restart).
`omnigraph cluster apply --as <you> --config /var/lib/omnigraph/cluster`
→ force a new deployment (restart).
For a deployment that doesn't need the cluster control plane, the classic
stateless shape — `OMNIGRAPH_TARGET_URI=s3://bucket/graph.omni`, no volume —