From c880d4cf2910d819e56c4ecf195bd16d1a36e2c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Henning?= <soeren.henning@email.uni-kiel.de> Date: Fri, 19 Nov 2021 18:39:35 +0100 Subject: [PATCH] Restructure docs --- docs/creating-a-benchmark-old.md | 36 +++++++++++++++++++++++++++++ docs/creating-a-benchmark.md | 39 -------------------------------- docs/running-benchmarks-old.md | 2 ++ 3 files changed, 38 insertions(+), 39 deletions(-) create mode 100644 docs/creating-a-benchmark-old.md diff --git a/docs/creating-a-benchmark-old.md b/docs/creating-a-benchmark-old.md new file mode 100644 index 000000000..3664bebf8 --- /dev/null +++ b/docs/creating-a-benchmark-old.md @@ -0,0 +1,36 @@ +* Create a benchmark for operator mode +* Create a benchmark for standalone mode +* Deploy a benchmark + +## Creating a benchmark for operator mode + +### App and Workload Generator Resources + +### Load and Resource Types + +### Kafka Configuration + + +### Make benchmark Kubernetes resources accessible + +* A benchmark is defined by a set of Kubernetes resources, which are automatically deployed and scaled by Theodolite. +* To make these resources accessible by the Theodolite operator, we need to add them to a volume, already mounted by Theodolite. The easiest way to do this is by adding the resources to the ConfigMap `benchmark-resources-custom`, which is mounted by Theodolite with its default installation. + + + + + +## Creating a benchmark for standalone mode + +Creating a benchmark in standalone mode is similar to operator mode. However, +instead of defining a benchmark as `Benchmark` resource, it is defined as a +benchmark YAML file. Such a file deviates in the following points from a +`Benchmark` resource: + +* The fields `apiVersion`, `kind` and `metadata` should be removed. +* The benchmark's name (`metadata.name` in `Benchmark` resources) must be defined by the top-level field `name`. +* Everything that is defined in `spec` has to be moved to the top-level. + +**TODO: example** + +**TODO: Create a ConfigMap containing the benchmark YAML files as well as all Kubernetes resources for that benchmark + deploy** \ No newline at end of file diff --git a/docs/creating-a-benchmark.md b/docs/creating-a-benchmark.md index 5887d4854..242ac71bd 100644 --- a/docs/creating-a-benchmark.md +++ b/docs/creating-a-benchmark.md @@ -76,42 +76,3 @@ For those topics, also wildcards are allowed in the topic name. <!-- Further information: API Reference --> <!-- Further information: How to deploy --> - ------ - -* Create a benchmark for operator mode -* Create a benchmark for standalone mode -* Deploy a benchmark - -## Creating a benchmark for operator mode - -### App and Workload Generator Resources - -### Load and Resource Types - -### Kafka Configuration - - -### Make benchmark Kubernetes resources accessible - -* A benchmark is defined by a set of Kubernetes resources, which are automatically deployed and scaled by Theodolite. -* To make these resources accessible by the Theodolite operator, we need to add them to a volume, already mounted by Theodolite. The easiest way to do this is by adding the resources to the ConfigMap `benchmark-resources-custom`, which is mounted by Theodolite with its default installation. - - - - - -## Creating a benchmark for standalone mode - -Creating a benchmark in standalone mode is similar to operator mode. However, -instead of defining a benchmark as `Benchmark` resource, it is defined as a -benchmark YAML file. Such a file deviates in the following points from a -`Benchmark` resource: - -* The fields `apiVersion`, `kind` and `metadata` should be removed. -* The benchmark's name (`metadata.name` in `Benchmark` resources) must be defined by the top-level field `name`. -* Everything that is defined in `spec` has to be moved to the top-level. - -**TODO: example** - -**TODO: Create a ConfigMap containing the benchmark YAML files as well as all Kubernetes resources for that benchmark + deploy** \ No newline at end of file diff --git a/docs/running-benchmarks-old.md b/docs/running-benchmarks-old.md index db9e30b34..7c27860d1 100644 --- a/docs/running-benchmarks-old.md +++ b/docs/running-benchmarks-old.md @@ -1,3 +1,5 @@ +old + # Running Scalability Benchmarks There are two options to run scalability benchmarks with Theodolite: -- GitLab