security: remove hardcoded cluster.local URLs from source code
Build & Push Workflows Image / build-push (push) Failing after 9s
ci / test (push) Successful in 1m32s

- activity/memory.go: read MEMORY_SERVICE_URL from env, default localhost
- pkg/db/db.go: remove cluster.local from DSN comment
- Fix memory_test.go env var name to match
This commit is contained in:
Test
2026-09-06 06:01:21 -07:00
parent cf91155c10
commit 7ed0642819
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -92,9 +92,9 @@ func RetrieveMemoryActivity(ctx context.Context, in RetrieveMemoryInput) (Retrie
}
// Get memory service URL and token
baseURL := os.Getenv("POIMEN_MEMORY_URL")
baseURL := os.Getenv("MEMORY_SERVICE_URL")
if baseURL == "" {
baseURL = "http://poimen-memory.poimen.svc.cluster.local:8080"
baseURL = "http://localhost:8080"
}
token := os.Getenv("POIMEN_MEMORY_TOKEN")