From aacf038b3355cfa9f042ecbc3c562f43ec3b7097 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Henning?= <soeren.henning@email.uni-kiel.de> Date: Mon, 5 Jul 2021 15:26:23 +0200 Subject: [PATCH] Add release name hint --- docs/installation.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/installation.md b/docs/installation.md index e8c779dec..e4381fbfb 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -50,3 +50,18 @@ Multiple Theodolite installations in the same namespace are currently not fully In cases, where you need to install multiple Theodolite instances, it's best to use dedicated namespaces **and** different release names. *Note that for meaningful results, usually only one benchmark should be executed at a time.* + +## Installation Hints + +### Installation with a release name other than `theodolite` + +When using another release name than `theodolite`, make sure to adjust the Kafka Lag Exporter configuration of you `values.yaml` accordingly: + +```yaml +kafka-lag-exporter: + clusters: + - name: "<your-release-name>-cp-kafka" + bootstrapBrokers: "<your-release-name>-cp-kafka:9092" +``` + +This seems unfortunately to be necessary as Helm does not let us inject values into dependency charts. -- GitLab