This guide demonstrates a TCP client and server application within the service mesh communicating using OSM’s TCP routing capability.
Prerequisites
- Kubernetes cluster running Kubernetes v1.22.9 or greater.
- Have OSM installed.
- Have
kubectl
available to interact with the API server. - Have
osm
CLI available for managing the service mesh.
Demo
The following demo shows a TCP client sending data to a tcp-echo
server, which then echoes back the data to the client over a TCP connection.
-
Set the namespace where OSM is installed.
-
Deploy the
tcp-echo
service in thetcp-demo
namespace. Thetcp-echo
service runs on port9000
with theappProtocol
field set totcp
, which indicates to OSM that TCP routing must be used for traffic directed to thetcp-echo
service on port9000
.Confirm the
tcp-echo
service and pod is up and running. -
Deploy the
curl
client into thecurl
namespace.Confirm the
curl
client pod is up and running.
Using Permissive Traffic Policy Mode
We will enable service discovery using permissive traffic policy mode, which allows application connectivity to be established without the need for explicit SMI policies.
-
Enable permissive traffic policy mode
-
Confirm the
curl
client is able to send and receive a response from thetcp-echo
service using TCP routing.The
tcp-echo
service should echo back the data sent by the client. In the above example, the client sendshello
, and thetcp-echo
service responds withecho response: hello
.
Using SMI Traffic Policy Mode
When using SMI traffic policy mode, explicit traffic policies must be configured to allow application connectivity. We will set up SMI policies to allow the curl
client to communicate with the tcp-echo
service on port 9000
.
-
Enable SMI traffic policy mode by disabling permissive traffic policy mode
-
Confirm the
curl
client is unable to send and receive a response from thetcp-echo
service in the absence of SMI policies. -
Configure SMI traffic access and routing policies.
-
Confirm the
curl
client is able to send and receive a response from thetcp-echo
service using SMI TCP route.
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.