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
Copy file name to clipboardExpand all lines: versioned_docs/version-2.21/concepts/faster.md
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,5 +27,3 @@ The dev loop can be jump-started with the right development environment and Kube
27
27
A rapid and continuous feedback loop is essential for productivity and speed; Telepresence enables the fast, efficient feedback loop to ensure that developers can access the rapid local development loop they rely on without disrupting their own or other developers' workflows. Telepresence safely intercepts traffic from the production cluster and enables near-instant testing of code and local debugging in production.
28
28
29
29
Telepresence works by deploying a two-way network proxy in a pod running in a Kubernetes cluster. This pod proxies data from the Kubernetes environment (e.g., TCP/UDP connections, environment variables, volumes) to the local process. This proxy can intercept traffic meant for the service and reroute it to a local copy, which is ready for further (local) development.
30
-
31
-
The intercept proxy works thanks to context propagation, which is most frequently associated with distributed tracing but also plays a key role in controllable intercepts.
Copy file name to clipboardExpand all lines: versioned_docs/version-2.21/install/manager.md
+40-1Lines changed: 40 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,13 @@ hide_table_of_contents: true
5
5
6
6
# Install/Uninstall the Traffic Manager
7
7
8
-
Telepresence uses a traffic manager to send/receive cloud traffic to the user. Telepresence uses [Helm](https://helm.sh) under the hood to install the traffic manager in your cluster. The `telepresence` binary embeds both `helm` and a helm-chart for a traffic-manager that is of the same version as the binary.
8
+
Telepresence uses a traffic manager to send/receive cloud traffic to the user. Telepresence uses [Helm](https://helm.sh) under the
9
+
hood to install the traffic manager in your cluster. The `telepresence` binary embeds both `helm` and a helm-chart for a
10
+
traffic-manager that is of the same version as the binary.
11
+
12
+
The Telepresence Helm chart documentation is published at [ArtifactHUB](https://artifacthub.io/packages/helm/telepresence-oss/telepresence-oss).
13
+
14
+
You can also use `helm` command directly, see [Install With Helm](#install-with-helm) for more details.
9
15
10
16
## Prerequisites
11
17
@@ -180,3 +186,36 @@ Telepresence Traffic Manager does require some [RBAC](../reference/rbac.md) for
180
186
To make it easier for operators to introspect / manage RBAC separately, you can use `rbac.only=true` to
181
187
only create the rbac-related objects.
182
188
Additionally, you can use `clientRbac.create=true` and `managerRbac.create=true` to toggle which subset(s) of RBAC objects you wish to create.
189
+
190
+
## Install with Helm
191
+
192
+
Before you begin, you must ensure that the [helm command](https://helm.sh/docs/intro/install/) is installed.
193
+
194
+
The Telepresence Helm chart is published at GitHub in the ghcr.io repository.
195
+
196
+
### Installing
197
+
198
+
Install the latest stable version of the traffic-manager into the default "ambassador" namespace with the following command:
0 commit comments