diff --git a/README.md b/README.md index 4ceb8709..c80db3fd 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Deploy Steerer in the `istio-system` namespace using Helm: helm repo add steerer https://stefanprodan.github.io/steerer # install or upgrade -helm upgrade --install steerer steerer/steerer \ +helm upgrade -i steerer steerer/steerer \ --namespace=istio-system \ --set metricsServer=http://prometheus.istio-system:9090 \ --set controlLoopInterval=1m @@ -353,6 +353,18 @@ Events: Normal Synced 5s steerer Promotion completed! Scaling down podinfo-canary.test ``` +Steerer comes with a Grafana dashboard made for canary analysis. + +Install Grafana with Helm: + +```bash +helm upgrade -i steerer-grafana steerer/grafana \ +--namespace=istio-system \ +--set url=http://prometheus.istio-system:9090 +``` + +![steerer-grafana](https://github.com/stefanprodan/steerer/blob/master/docs/screens/grafana-canary-analysis.png) + ### Contributing Steerer is Apache 2.0 licensed and accepts contributions via GitHub pull requests. diff --git a/docs/screens/grafana-canary-analysis.png b/docs/screens/grafana-canary-analysis.png new file mode 100644 index 00000000..7663cb56 Binary files /dev/null and b/docs/screens/grafana-canary-analysis.png differ