From 3f0e8541f690b172519d24b4835732d4fd3b5d66 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Sun, 15 Mar 2026 15:32:50 +0000 Subject: [PATCH] claude-memory: pin image to :17, fixes URL-decode crash on sync endpoint The + in +00:00 timezone offsets was being URL-decoded to a space, causing ValueError on the /api/memories/sync endpoint. Build :17 includes the fix. Using versioned tag instead of :latest to avoid pull-through cache serving stale images. --- stacks/claude-memory/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stacks/claude-memory/main.tf b/stacks/claude-memory/main.tf index 7a456cc1..6e4cdab2 100644 --- a/stacks/claude-memory/main.tf +++ b/stacks/claude-memory/main.tf @@ -103,7 +103,7 @@ resource "kubernetes_deployment" "claude-memory" { } container { name = "claude-memory" - image = "viktorbarzin/claude-memory-mcp:latest" + image = "viktorbarzin/claude-memory-mcp:17" port { container_port = 8000