[ci skip] Fix health service port: container listens on 3000, not 80
This commit is contained in:
parent
f04a072beb
commit
70376b623e
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue