From 77cd28534b3bbf299c30a18449b7ef53f347ccd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Henning?= <soeren.henning@email.uni-kiel.de> Date: Fri, 9 Apr 2021 20:13:47 +0200 Subject: [PATCH] Use "theodolite" as default release name --- execution/helm/README.md | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/execution/helm/README.md b/execution/helm/README.md index 86d760ec5..9712270a6 100644 --- a/execution/helm/README.md +++ b/execution/helm/README.md @@ -6,11 +6,9 @@ Install the chart via: ```sh helm dependencies update . -helm install my-confluent . +helm install theodolite . ``` -**Please note: Theodolite currently uses hard-coded URLs, to connect to Kafka and Zookeeper. For that reason, the name of this chart must be `my-confluent`.** We will change this behavior soon. - This chart installs requirements to execute benchmarks with Theodolite. Dependencies and subcharts: @@ -27,7 +25,7 @@ Dependencies and subcharts: Test the installation: ```sh -helm test <release-name> +helm test theodolite ``` Our test files are located [here](templates/../../theodolite-chart/templates/tests). Many subcharts have their own tests, these are also executed and are placed in the respective /templates folders. @@ -46,17 +44,17 @@ helm install theodolite . -f preconfigs/one-broker-values.yaml ## Uninstall this Chart -To uninstall/delete the `my-release` deployment: +To uninstall/delete the `theodolite` deployment: ```sh -helm delete my-release +helm delete theodolite ``` This command does not remove the CRDs which are created by this Chart. Remove this CRDs with: ```sh -kubectl delete crd execution -kubectl delete crd benchmark +kubectl delete crd executions.theodolite.com +kubectl delete crd benchmarks.theodolite.com ``` ## Development -- GitLab