We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1b1d7d commit d1d9c0eCopy full SHA for d1d9c0e
docs/gitbook/tutorials/traefik-progressive-delivery.md
@@ -13,9 +13,17 @@ Install Traefik with Helm v3:
13
```bash
14
helm repo add traefik https://helm.traefik.io/traefik
15
kubectl create ns traefik
16
-helm upgrade -i traefik traefik/traefik \
17
---namespace traefik \
18
---set additionalArguments="{--metrics.prometheus=true}"
+
+cat <<EOF | helm upgrade -i traefik traefik/traefik --namespace traefik -f -
+deployment:
19
+ podAnnotations:
20
+ prometheus.io/port: "9100"
21
+ prometheus.io/scrape: "true"
22
+ prometheus.io/path: "/metrics"
23
+metrics:
24
+ prometheus:
25
+ entryPoint: metrics
26
+EOF
27
```
28
29
Install Flagger and the Prometheus add-on in the same namespace as Traefik:
0 commit comments