Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mention uid #31

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,19 @@ After this command is completed, you can create a skupper site:
./skupper-docker init
```

3. To connect to another Skupper site, you must update the generated token with the site UID.

a) Get the UID from the Skupper site you are trying to connect to:
```
$ kubectl get -o template cm/skupper-site --template={{.metadata.uid}}
```

b) Add the UID to the token.
For example, if you followed the [Getting Started](https://skupper.io/start/index.html) and the UID is `fba75742-f594-4329-ae70-18698b88cd4a`, add the following line to `$HOME/secret.yaml` under `metadata`:
```
skupper.io/generated-by: fba75742-f594-4329-ae70-18698b88cd4a
```

To troubleshoot issues:

1. Run `docker ps` to view the containers:
Expand Down Expand Up @@ -50,3 +63,5 @@ Connections

This shows typical output for a successfully instantiated skupper site.
If you do not see similar output, check your Docker network configuration, for example firewall settings.