1.0 KiB
1.0 KiB
| id | title | status | assignee | created_date | labels | dependencies | parent_task_id |
|---|---|---|---|---|---|---|---|
| TASK-MEDIUM.9 | Wire ollama into rspace sidecar lifecycle | To Do | 2026-04-16 23:17 | TASK-MEDIUM |
Description
server/sidecar-manager.ts lists ollama in SIDECARS but there's no ollama service in /opt/rspace-online/docker-compose.yml. ensureSidecar('ollama') calls from server/index.ts:2853 silently no-op. Either: (a) add an ollama service to the compose under profiles:[sidecar] so Sablier can wake it, or (b) drop ollama from sidecar-manager and adjust callers. Memory doc (2026-03-31 entry) suggests ollama was intended as a sidecar — option (a) is more likely correct.
Acceptance Criteria
- #1 ollama container exists on rspace-internal network at host 'ollama' port 11434
- #2 Sablier can wake it via blocking API
- #3 fetch('http://ollama:11434/') from rspace returns 200 after ensureSidecar('ollama')