Skip to content

Commit 04d0fae

Browse files
authored
Merge pull request #7 from natrontech/docs/jfu
docs: update teleport documentation
2 parents 276ebd4 + 3900d24 commit 04d0fae

File tree

4 files changed

+28
-8
lines changed

4 files changed

+28
-8
lines changed

docs/access/teleport/client-installation.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ Teleport Connect is a desktop application that allows you to connect to a Telepo
1616

1717

1818
## TSH Client
19+
1920
The TSH Client is a command line tool that allows you to connect to a Teleport cluster and access resources. It is available for Linux, macOS, and Windows.
2021

2122
It includes the following commands:
2223

2324
- `tsh login` - log in to a Teleport cluster
2425
- `tsh ssh` - connect to a node or a cluster
2526
- `tsh db` - connect to a database
27+
- `tsh kube` - connect to a Kubernetes cluster
2628
- `tsh status` - show the status of the Teleport cluster
2729

28-
!!! info "Make sure to select `tsh client` from the dropdown menu"
30+
[Install instructinos TSH Client :fontawesome-solid-download:](https://goteleport.com/docs/connect-your-client/tsh/#installing-tsh){ .md-button }
31+
2932

30-
<figure markdown>
31-
![Teleport](../../assets/images/teleport_tsh_download.png)
32-
</figure>
3333

docs/access/teleport/k8s-client.md

+23-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
# Accessing Kubernetes Clusters using the Teleport Connect Client
22

3-
You can use the Teleport Connect client to access Kubernetes clusters.
3+
You can use the Teleport Connect client or the `tsh` binary to access Kubernetes clusters.
44

55
## Prerequisites
66

7-
- Teleport Connect Client installed on your local machine. See [Installing Teleport Connect Client](/access/teleport/client-installation/) for instructions.
7+
- Teleport Connect Client or TSH Client installed on your local machine. See [Installing Teleport Client](/access/teleport/client-installation/) for instructions.
88
- Kubectl installed on your local machine. See [Installing kubectl](https://kubernetes.io/docs/tasks/tools/#kubectl) for instructions.
9+
- You must be in a Teleport Role that allows access to Kubernetes clusters.
910

11+
## Accessing a Kubernetes Cluster using Teleport Connect
1012

11-
## Accessing a Kubernetes Cluster
1213
Launch the Teleport Connect Client and sign in with your account.
1314

1415
Choose the register `Kubes` and select `Connect` to connect to the Kubernetes cluster.
@@ -19,4 +20,22 @@ A new terminal window will open with the `kubectl` context set to the Kubernetes
1920

2021
Now you can run `kubectl` commands to access the Kubernetes cluster.
2122

22-
![Teleport Connect K8s](../../assets/images/teleport_connect_k8s_terminal.png)
23+
![Teleport Connect K8s](../../assets/images/teleport_connect_k8s_terminal.png)
24+
25+
## Accessing Kubernetes Clusters using tsh
26+
27+
You can use the Teleport CLI `tsh` to access Kubernetes clusters directly in your terminal.
28+
29+
```bash
30+
TELEPORT_URL=teleport.example.com
31+
TELEPORT_USER=your-teleport-user
32+
33+
# Login to the Teleport cluster
34+
tsh login --proxy=$TELEPORT_URL --auth=local --user=$TELEPORT_USER $TELEPORT_URL
35+
36+
# Print available Kubernetes clusters
37+
tsh kube ls
38+
39+
# Connect to a Kubernetes cluster
40+
tsh kube login <cluster-name>
41+
```

docs/access/teleport/k8s-openlens.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ You can use the Teleport Connect client to access Kubernetes clusters with OpenL
99
- OpenLens installed on your local machine. See [OpenLens Releases](https://github.com/MuhammedKalkan/OpenLens/releases) for download.
1010

1111
## Configuring OpenLens to use Teleport Connect
12+
1213
Launch the Teleport Connect Client and sign in with your account.
1314

1415
Choose the register `Kubes` and select `Connect` to connect to the Kubernetes cluster.
-15.8 KB
Binary file not shown.

0 commit comments

Comments
 (0)