diff --git a/helm/values.yaml b/helm/values.yaml
index 9de0155cf26d26bc20975d8ec6524607ac9a1d43..1e57b42c485eb20a5525f25cfc0ef616e65a325c 100644
--- a/helm/values.yaml
+++ b/helm/values.yaml
@@ -66,7 +66,7 @@ cp-helm-charts:
   cp-zookeeper:
     enabled: true
     nodeSelector: {}
-    servers: 3 # default: 3 
+    servers: 3
     image: confluentinc/cp-zookeeper
     imageTag: 5.4.0
     ## Optionally specify an array of imagePullSecrets. Secrets must be manually created in the namespace.
@@ -83,7 +83,7 @@ cp-helm-charts:
   cp-kafka:
     enabled: true
     nodeSelector: {}
-    brokers: 10 # default: 10
+    brokers: 3
     image: confluentinc/cp-enterprise-kafka
     imageTag: 5.4.0
     ## Optionally specify an array of imagePullSecrets. Secrets must be manually created in the namespace.
diff --git a/theodolite-benchmarks/README.md b/theodolite-benchmarks/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..f794d201859b815fc26a4cbc7bd3be891c964ab4
--- /dev/null
+++ b/theodolite-benchmarks/README.md
@@ -0,0 +1,23 @@
+# Theodolite Benchmarks
+
+Theodolite comes with a set of 4 benchmarks for event-driven microservices, which are implemented with Kafka Streams
+and Apache Flink. The benchmarks are based on typical use cases for stream processing and named: UC1, UC2, UC3 and UC4.
+
+## Building and packaging the benchmarks
+
+All benchmarks can be built with:
+
+```sh
+./gradlew build
+```
+
+This produces `.tar` files in `<benchmark-impl>/build/distribution`, where `<benchmark-impl>` is for example
+`uc1-kstreams`.
+
+## Building Docker images of the benchmarks
+
+Each benchmark implementation directory contains a Dockerfile. To build an image (in this case of `uc1-kstreams`), run:
+
+```sh
+docker build -t theodolite-uc1-kstreams ./uc1-kstreams
+```
diff --git a/theodolite/build.gradle b/theodolite/build.gradle
index 1c7cde32dae62305e2d9df99d95e7991e90068bc..65f53886f3038538946e2f982161e6f6d7d207d7 100644
--- a/theodolite/build.gradle
+++ b/theodolite/build.gradle
@@ -37,7 +37,7 @@ dependencies {
 }
 
 group 'theodolite'
-version '0.5.0-SNAPSHOT'
+version '0.6.0-SNAPSHOT'
 
 java {
     sourceCompatibility = JavaVersion.VERSION_11