From aafaddd8dc1050ede0cfb8e025851c8e7ffd2b6a Mon Sep 17 00:00:00 2001 From: Tommi Tuura <tommi.tuura@helsinki.fi> Date: Thu, 8 Aug 2024 12:31:22 +0300 Subject: [PATCH] A note about correct network interface when publishing routes --- tike-container-platform/instructions/how-to-publish.md | 1 + 1 file changed, 1 insertion(+) diff --git a/tike-container-platform/instructions/how-to-publish.md b/tike-container-platform/instructions/how-to-publish.md index 962c31e..afafe52 100644 --- a/tike-container-platform/instructions/how-to-publish.md +++ b/tike-container-platform/instructions/how-to-publish.md @@ -275,3 +275,4 @@ Check the following things: - `oc port-forward <pod-name> <local-port>:<pod-port>` - and in another terminal: `curl localhost:<local-port>` - Your Service has correct endpoints. Optionally the `selectorLabel` in your Service is not matching to the correct pods. The command "`oc get endpoints`" should list all Services and their endpoints. At least one endpoint resembling `10.12.*:<pod-port>` should exist. +- The software in your container has bound to listen to correct network interface (as seen from inside container). `localhost` may not work, try `0.0.0.0` instead. -- GitLab