[ci skip] Fix f1-stream port mismatch: container listens on 8080, not 80

This commit is contained in:
Viktor Barzin 2026-02-21 15:42:47 +00:00
parent 8756bcfb9a
commit a5e0b19a3a

View file

@ -47,7 +47,7 @@ resource "kubernetes_deployment" "f1-stream" {
} }
} }
port { port {
container_port = 80 container_port = 8080
} }
} }
} }
@ -70,7 +70,8 @@ resource "kubernetes_service" "f1-stream" {
app = "f1-stream" app = "f1-stream"
} }
port { port {
port = "80" port = "80"
target_port = "8080"
} }
} }
} }