From 69dd29b3a1ea22a8e798415991f90013a8046442 Mon Sep 17 00:00:00 2001 From: Preston Hunter Date: Mon, 29 Dec 2025 00:48:56 -0500 Subject: [PATCH] fix(ai-backend): Configure Ollama service with host address mode The `ollama` service in the `ai-backend` Nomad job has been updated to use `address_mode = "host"`. This ensures the service is registered with the host's IP address in Consul, allowing external proxies like Traefik to correctly route traffic. This change resolves potential connectivity issues by making the service directly accessible via the host network. --- stacks/ai/ai-backend.nomad | 1 + 1 file changed, 1 insertion(+) diff --git a/stacks/ai/ai-backend.nomad b/stacks/ai/ai-backend.nomad index 85cdc84..ed0e7fd 100644 --- a/stacks/ai/ai-backend.nomad +++ b/stacks/ai/ai-backend.nomad @@ -50,6 +50,7 @@ job "ai-backend" { name = "ollama" port = "api" tags = ["traefik.enable=true"] + address_mode = "host" check { type = "http" path = "/"