Skip to content

Communicate with other workloadsΒΆ

This guide shows you how to communicate with other workloads inside the same environment or cluster via service discovery.

PrerequisitesΒΆ

Identify the target addressΒΆ

To identity the address of the workload we are communicating with, we need to know its name and what namespace its running in.

Target exists in the same namespaceΒΆ

If the workload you are calling is in the same namespace, you can reach it by calling its name directly using HTTP like so:

http://<name>

Target exists in another namespaceΒΆ

If the workload is running in another team's namespace, you need to specify the namespace as well:

http://<name>.<namespace>

Call the addressΒΆ

Call the workload through its internal address using HTTP from your own workload:

GET /resource HTTP/1.1

Host: <name>.<namespace>