Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandru Bîrcă authored and angelbarrera92 committed Sep 17, 2024
1 parent 14f2560 commit 15319ce
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,27 @@ The proxy can be configured to use either namespaces and/or labels to query Prom
At least one must be configured, otherwise the proxy will not proxy the query to Prometheus.
*(It could lead to a security issue if the proxy is not configured to use namespaces or labels)*

### Breaking Change in [v1.12.0]: Update map[string]string to map[string][]string for the labels map values

What Changed: Previously, the map only allowed a single string value per key:

```
// Old implementation (prior to version 1.12.0)
labels:
app: happy
team: america
```
Now, the map allows each key to store a slice of strings (multiple values):

```
// New implementation (starting from version 1.12.0)
labels:
app:
- happy
- sad
team:
- america
```
### Deploy on Kubernetes using Helm

The proxy can be deployed on Kubernetes using Helm. The Helm chart is available at [k8spin/prometheus-multi-tenant-proxy](https://k8spin.github.io/prometheus-multi-tenant-proxy). Find the chart's documentation on its [README.md](deployments/kubernetes/helm/prometheus-multi-tenant-proxy/README.md).
Expand Down

0 comments on commit 15319ce

Please sign in to comment.