You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To test your installation, run the 'skupper' command with no arguments. It will print a usage summary.
33
33
34
-
```bash
35
-
$ skupper [command]
36
-
[...]
37
-
```
38
-
39
34
40
35
## Step 2 : Set up the inter-cluster Skupper network
41
36
@@ -44,15 +39,15 @@ You will need two clusters: one which we will call 'private' and one which we wi
44
39
NOTE: We assume here that you have two separate shells (windows), one logged in to the 'public' cluster and on logged into the 'private' cluster. But both are on the same machine, and thus both have access to the secrets file which we are about to create.
45
40
46
41
```bash
47
-
$ skupper init --id public
48
-
$ skupper secret ~/tcp-echo-demo/secret.yaml -i public
42
+
skupper init --id public
43
+
skupper secret ~/tcp-echo-demo/secret.yaml -i public
49
44
```
50
45
51
46
2. On the 'private' cluster, deploy the 'private' Skupper router, and connect to 'public' cluster.
52
47
53
48
```bash
54
-
$ skupper init --edge --id private
55
-
$ skupper connect ~/tcp-echo-demo/secret.yaml --name public
49
+
skupper init --edge --id private
50
+
skupper connect ~/tcp-echo-demo/secret.yaml --name public
56
51
```
57
52
58
53
@@ -61,7 +56,7 @@ You will need two clusters: one which we will call 'private' and one which we wi
61
56
1. On the 'public' cluster, deploy the tcp-echo server, and the service that exposes it.
4. Annotate the private service. This will cause Skupper to notice it, and connect it to its counterpart on the other cluster.
@@ -87,16 +82,16 @@ You will need two clusters: one which we will call 'private' and one which we wi
87
82
1. On the private cluster, find the IP address and port of the service and netcat to it. Skupper routes your message from the private to the public cluster where it is capitalized by the tcp-echo service and returned to you. ( Also, the server prepends its pod ID to the capitalized message. )
0 commit comments