[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 25df219c86
commit 691a41ee8b
No known key found for this signature in database
GPG key ID: 0EB088298288D958

View file

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