diff --git a/stacks/whisper/main.tf b/stacks/whisper/main.tf index 27fe5cb0..e412c951 100644 --- a/stacks/whisper/main.tf +++ b/stacks/whisper/main.tf @@ -277,25 +277,3 @@ resource "kubernetes_manifest" "piper_tcp_ingressroute" { } } -# TCP passthrough from Traefik to ollama service (for HA voice pipeline) -resource "kubernetes_manifest" "ollama_tcp_ingressroute" { - manifest = { - apiVersion = "traefik.io/v1alpha1" - kind = "IngressRouteTCP" - metadata = { - name = "ollama-tcp" - namespace = "traefik" - } - spec = { - entryPoints = ["ollama-tcp"] - routes = [{ - match = "HostSNI(`*`)" - services = [{ - name = "ollama" - namespace = "ollama" - port = 11434 - }] - }] - } - } -}