TCP tunneling with Skupper
This is a simple demonstration of TCP communication tunneled through a Skupper network from a private to a public cluster and back again. During development of this demonstration, the private cluster was running locally, while the public cluster was on AWS.
We will set up a Skupper network between the two clusters, start a TCP echo-server on the public cluster, then communicate to it from the private cluster and receive its replies. At no time is any port opened on the machine running the private cluster.
- The
kubectlcommand-line tool, version 1.15 or later (installation guide) - The
skuppercommand-line tool, the latest version (installation guide) - Two Kubernetes namespaces, from any providers you choose, on any clusters you choose. ( In this example, the namespaces are called 'public' and 'private'. )
- A private cluster running on your local machine.
- A public cluster is running on a public cloud provider.
-
On your local machine, make a directory for this tutorial and clone the example repo:
mkdir ${HOME}/tcp-echo cd ${HOME}/tcp-echo git clone https://github.com/skupperproject/skupper-example-tcp-echo
-
Prepare the target clusters.
- On your local machine, log in to both clusters in a separate terminal session.
- In each cluster, set the kubectl config context to use the demo namespace (see kubectl cheat sheet)
-
In the terminal for the public cluster, create the public namespace and deploy the tcp echo server in it :
kubectl create namespace public kubectl config set-context --current --namespace=public kubectl apply -f ${HOME}/tcp-echo/public-deployment.yaml -
Still in the public cluster, start Skupper, expose the tcp-echo deployment, and generate a connection token :
skupper init skupper expose --port 9090 deployment tcp-go-echo skupper connection-token ${HOME}/tcp-echo/public_secret.yaml -
In the private cluster, create the private namespace :
kubectl create namespace private kubectl config set-context --current --namespace=private
-
Start Skupper in the private cluster, and connect to public :
skupper init skupper connect ${HOME}/tcp-echo//public_secret.yaml -
See that Skupper is now exposing the public-cluster tcp-echo service on this cluster. (This may take a few seconds. If it's not there immediately, wait a few seconds and try again.) :
kubectl get svc