[ci skip] Fix f1-stream port mismatch: container listens on 8080, not 80
This commit is contained in:
parent
25df219c86
commit
691a41ee8b
1 changed files with 3 additions and 2 deletions
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue