-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added support for proxying to multiple destinations within a single t…
…unnel: Prometheus, ClickHouse, and Pyroscope
- Loading branch information
Showing
6 changed files
with
175 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,13 @@ | ||
# Promtum | ||
# Coroot-connect | ||
|
||
Promtun is a tiny tool to establish a tunnel between a Prometheus server and Coroot cloud. | ||
|
||
![](./schema.svg) | ||
Coroot-connect is a tool that establishes secure tunnels between the Coroot cloud and customers' clusters. | ||
|
||
## Run | ||
|
||
### Docker | ||
|
||
```bash | ||
docker run --detach --name coroot-promtun \ | ||
-e PROMETHEUS_ADDRESS=<INTERNAL_PROMETHEUS_HOST_AND_PORT> \ | ||
-e PROJECT_TOKEN=<COROOT_PROJECT_TOKEN> \ | ||
ghcr.io/coroot/promtun | ||
``` | ||
TDB | ||
|
||
### Kubernetes | ||
|
||
```yaml | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: promtun | ||
namespace: coroot | ||
spec: | ||
selector: | ||
matchLabels: {app: promtun} | ||
replicas: 1 | ||
template: | ||
metadata: | ||
labels: {app: promtun} | ||
spec: | ||
containers: | ||
- name: promtun | ||
image: ghcr.io/coroot/promtun | ||
env: | ||
- name: PROMETHEUS_ADDRESS | ||
value: <INTERNAL_PROMETHEUS_HOST_AND_PORT> | ||
- name: PROJECT_TOKEN | ||
value: <COROOT_PROJECT_TOKEN> | ||
``` | ||
TBD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.