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