4 merge requests!159Re-implementation of Theodolite with Kotlin/Quarkus,!157Update Graal Image in CI pipeline,!148Make patcher parameters flexible,!83WIP: Re-implementation of Theodolite with Kotlin/Quarkus
@@ -49,7 +51,7 @@ The properties have the following definitions:
...
@@ -49,7 +51,7 @@ The properties have the following definitions:
***patchers**: List of [patchers](#Patchers) used to scale this resource type. Each patcher has the following structure:
***patchers**: List of [patchers](#Patchers) used to scale this resource type. Each patcher has the following structure:
***type**: Type of the [patcher](#Patchers). The concrete types can be looked up in the list of [patchers](#Patchers).
***type**: Type of the [patcher](#Patchers). The concrete types can be looked up in the list of [patchers](#Patchers).
***resources**: Specifies the Kubernetes resource to be patched.
***resources**: Specifies the Kubernetes resource to be patched.
***Patcher Arguments**: (Optional) Patcher specific additional arguments.
***config**: *Patcher Arguments*: (Optional) Patcher specific additional arguments.
***loadTypes**: A list of load types that can be scaled for this *benchmark*. For each load type the concrete values are defined in the *execution* object. Each load type has the following structure:
***loadTypes**: A list of load types that can be scaled for this *benchmark*. For each load type the concrete values are defined in the *execution* object. Each load type has the following structure:
***typeName**: Name of the load type.
***typeName**: Name of the load type.
***patchers**: List of patchers used to scale * **resourceTypes**: A list of resource types that can be scaled for this *benchmark*. For each resource type the concrete values are defined in the *execution* resource object.Each resource type has the following structure:
***patchers**: List of patchers used to scale * **resourceTypes**: A list of resource types that can be scaled for this *benchmark*. For each resource type the concrete values are defined in the *execution* resource object.Each resource type has the following structure:
...
@@ -57,7 +59,7 @@ The properties have the following definitions:
...
@@ -57,7 +59,7 @@ The properties have the following definitions:
***patchers**: List of patchers used to scale this resource type. Each patcher has the following structure:
***patchers**: List of patchers used to scale this resource type. Each patcher has the following structure:
***type**: Type of the Patcher. The concrete types can be looked up in the list of patchers.
***type**: Type of the Patcher. The concrete types can be looked up in the list of patchers.
***resources**: Specifies the Kubernetes resource to be patched.
***resources**: Specifies the Kubernetes resource to be patched.
***Patcher Arguments**: (Optional) Patcher specific additional arguments.
***config**: *Patcher Arguments*: (Optional) Patcher specific additional arguments as Map<String,String>.
***kafkaConfig**: Contains the Kafka configuration.
***kafkaConfig**: Contains the Kafka configuration.
***bootstrapServers**: The bootstrap servers connection string.
***bootstrapServers**: The bootstrap servers connection string.
***topics**: List of topics to be created for each [experiment](#Experiment). Alternative theodolite offers the possibility to remove certain topics after each experiment.
***topics**: List of topics to be created for each [experiment](#Experiment). Alternative theodolite offers the possibility to remove certain topics after each experiment.
...
@@ -105,7 +107,8 @@ configurationOverrides:
...
@@ -105,7 +107,8 @@ configurationOverrides:
-patcher:
-patcher:
type:String
type:String
resource:String
resource:String
<Patcher Arguments> ...
config:
<Patcher Arguments> ...
...
...
```
```
...
@@ -136,7 +139,7 @@ The properties have the following definitions:
...
@@ -136,7 +139,7 @@ The properties have the following definitions:
***patcher**: Patcher used to patch a resource. Each patcher has the following structure:
***patcher**: Patcher used to patch a resource. Each patcher has the following structure:
***type**: Type of the Patcher. The concrete types can be looked up in the list of patchers.
***type**: Type of the Patcher. The concrete types can be looked up in the list of patchers.
***resources**: Specifies the Kubernetes resource to be patched.
***resources**: Specifies the Kubernetes resource to be patched.
***Patcher Arguments**: (Optional) Patcher specific additional arguments.
***config**: *Patcher Arguments*: (Optional) Patcher specific additional arguments.
## Patchers
## Patchers
...
@@ -159,19 +162,22 @@ The properties have the following definitions:
...
@@ -159,19 +162,22 @@ The properties have the following definitions:
***EnvVarPatcher**: Allows to modify the value of an environment variable for a container in a kubernetes deployment.
***EnvVarPatcher**: Allows to modify the value of an environment variable for a container in a kubernetes deployment.