Task:
Determine the host/internal IP being used by a Sametime Docker/Kubernetes container.
Commands:
Note:
The IP returned will be the external IP from the container point of view, but not the external IP through the NAT/firewall that STUN returns.
For Docker:
$ docker-compose logs <name e.g. jvb> | grep -i discovered
In the returned text, use the DOCKER_HOST_ADDRESS.
For Kubernetes:
Get the pods info:
$ kubectl get po -o wide
and/or
Using the name, get the details of the <video> node:
$ kubectl describe node <name>
previous page
|