[ci skip] Fix health service port: container listens on 3000, not 80

This commit is contained in:
Viktor Barzin 2026-02-09 21:27:50 +00:00
parent f04a072beb
commit 70376b623e

View file

@ -43,7 +43,7 @@ resource "kubernetes_deployment" "health" {
image = "viktorbarzin/health:latest"
port {
container_port = 80
container_port = 3000
}
env {
@ -115,7 +115,7 @@ resource "kubernetes_service" "health" {
port {
name = "http"
port = 80
target_port = 80
target_port = 3000
}
}
}