diff --git a/docs/api-reference/crds.md b/docs/api-reference/crds.md index fb3f02ac941870dd085d06027d972e6003c7aadb..238c9873154eea806b1786bbce3626d801b91c4a 100644 --- a/docs/api-reference/crds.md +++ b/docs/api-reference/crds.md @@ -1906,16 +1906,16 @@ Defines the overall parameter for the execution. <td><b>repetitions</b></td> <td>integer</td> <td> - Numper of repititions for each experiments.<br/> + Number of repititions for each experiment.<br/> </td> <td>true</td> </tr><tr> <td><b>restrictions</b></td> <td>[]string</td> <td> - List of restriction strategys used to delimit the search space.<br/> + List of restriction strategies used to delimit the search space.<br/> </td> - <td>true</td> + <td>false</td> </tr><tr> <td><b>strategy</b></td> <td>string</td> diff --git a/theodolite/crd/crd-execution.yaml b/theodolite/crd/crd-execution.yaml index fc5a781340fb1d539ee8126edb761f428406e758..f83771d00f98be5f20516c5a75b3c86cd765c0a3 100644 --- a/theodolite/crd/crd-execution.yaml +++ b/theodolite/crd/crd-execution.yaml @@ -110,7 +110,7 @@ spec: description: Defines the duration of each experiment in seconds. type: integer repetitions: - description: Number of repititions for each experiments. + description: Number of repititions for each experiment. type: integer loadGenerationDelay: description: Seconds to wait between the start of the SUT and the load generator. diff --git a/theodolite/examples/operator/example-execution.yaml b/theodolite/examples/operator/example-execution.yaml index 576a74b90dfc38483de79502ac14d42f6bedfb49..cb811a35cd5226630a95135a2cfb69bdd6299cdc 100644 --- a/theodolite/examples/operator/example-execution.yaml +++ b/theodolite/examples/operator/example-execution.yaml @@ -19,12 +19,14 @@ spec: externalSloUrl: "http://localhost:80/evaluate-slope" warmup: 60 # in seconds execution: - strategy: "LinearSearch" + strategy: + name: "RestrictionSearch" + restrictions: + - "LowerBound" + searchStrategy: "LinearSearch" duration: 300 # in seconds repetitions: 1 loadGenerationDelay: 30 # in seconds - restrictions: - - "LowerBound" configOverrides: [] # - patcher: # type: "NodeSelectorPatcher"