Skip to content
Snippets Groups Projects
Commit 1bea13b7 authored by Sören Henning's avatar Sören Henning
Browse files

Merge branch 'master' into 0.5-docs

parents ba690b3c 84355ec0
No related branches found
No related tags found
1 merge request!164Add Theodolite docs
Showing
with 138 additions and 115 deletions
...@@ -51,6 +51,13 @@ Resource Types: ...@@ -51,6 +51,13 @@ Resource Types:
<td>object</td> <td>object</td>
<td>Refer to the Kubernetes API documentation for the fields of the `metadata` field.</td> <td>Refer to the Kubernetes API documentation for the fields of the `metadata` field.</td>
<td>true</td> <td>true</td>
</tr><tr>
<td><b><a href="#benchmarkstatus">status</a></b></td>
<td>object</td>
<td>
<br/>
</td>
<td>false</td>
</tr><tr> </tr><tr>
<td><b><a href="#benchmarkspec">spec</a></b></td> <td><b><a href="#benchmarkspec">spec</a></b></td>
<td>object</td> <td>object</td>
...@@ -62,6 +69,33 @@ Resource Types: ...@@ -62,6 +69,33 @@ Resource Types:
</table> </table>
### benchmark.status
<sup><sup>[↩ Parent](#benchmark)</sup></sup>
<table>
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
<th>Required</th>
</tr>
</thead>
<tbody><tr>
<td><b>resourceSetsState</b></td>
<td>string</td>
<td>
The status of a Benchmark indicates whether all resources are available to start the benchmark or not.<br/>
</td>
<td>false</td>
</tr></tbody>
</table>
### benchmark.spec ### benchmark.spec
<sup><sup>[↩ Parent](#benchmark)</sup></sup> <sup><sup>[↩ Parent](#benchmark)</sup></sup>
...@@ -92,6 +126,8 @@ Resource Types: ...@@ -92,6 +126,8 @@ Resource Types:
<td>string</td> <td>string</td>
<td> <td>
This field exists only for technical reasons and should not be set by the user. The value of the field will be overwritten.<br/> This field exists only for technical reasons and should not be set by the user. The value of the field will be overwritten.<br/>
<br/>
<i>Default</i>: <br/>
</td> </td>
<td>false</td> <td>false</td>
</tr><tr> </tr><tr>
......
{{- $processedDict := dict -}} {{- range $configmap, $enabled := .Values.operator.theodoliteBenchmarks.resourceConfigMaps }}
{{- range $path, $bytes := .Files.Glob "benchmark-definitions/**/resources/**" }} {{- if $enabled -}}
{{- $name := base (dir (dir $path)) }} {{- $name := kebabcase $configmap }}
{{- if not (hasKey $processedDict $name) -}}
{{ $_ := set $processedDict $name "true" }}
apiVersion: v1 apiVersion: v1
kind: ConfigMap kind: ConfigMap
metadata: metadata:
name: benchmark-resources-{{ $name }} name: benchmark-resources-{{ $name }}
data: data:
{{ ($.Files.Glob (printf "benchmark-definitions/%s/resources/*" $name)).AsConfig | indent 2 }} {{ ($.Files.Glob (printf "benchmark-definitions/%s/resources/*" $name)).AsConfig | indent 2 }}
--- ---
{{- end }} {{- end }}
{{- end }} {{- end }}
apiVersion: v1
kind: ConfigMap
metadata:
name: benchmark-resources-custom
data: {}
{{- range $benchmark, $enabled := .Values.operator.theodoliteBenchmarks.benchmarks }}
{{- if $enabled -}}
{{- $name := kebabcase $benchmark }}
{{ $.Files.Get (printf "benchmark-definitions/%s/%s-benchmark-operator.yaml" $name $name) }}
---
{{- end }}
{{- end }}
...@@ -49,6 +49,7 @@ rules: ...@@ -49,6 +49,7 @@ rules:
- theodolite.com - theodolite.com
resources: resources:
- benchmarks - benchmarks
- benchmarks/status
- executions - executions
- executions/status - executions/status
verbs: verbs:
......
...@@ -26,31 +26,11 @@ spec: ...@@ -26,31 +26,11 @@ spec:
value: {{ .Release.Namespace }} value: {{ .Release.Namespace }}
- name: MODE - name: MODE
value: operator value: operator
- name: THEODOLITE_APP_RESOURCES
value: "./benchmark-resources"
- name: RESULTS_FOLDER - name: RESULTS_FOLDER
value: "./results" value: "./results"
volumeMounts: volumeMounts:
- name: theodolite-results-volume - name: theodolite-results-volume
mountPath: "/deployments/results" mountPath: "/deployments/results"
- name: benchmark-resources-uc1-kstreams
mountPath: /deployments/benchmark-resources/uc1-kstreams
- name: benchmark-resources-uc2-kstreams
mountPath: /deployments/benchmark-resources/uc2-kstreams
- name: benchmark-resources-uc3-kstreams
mountPath: /deployments/benchmark-resources/uc3-kstreams
- name: benchmark-resources-uc4-kstreams
mountPath: /deployments/benchmark-resources/uc4-kstreams
- name: benchmark-resources-uc1-flink
mountPath: /deployments/benchmark-resources/uc1-flink
- name: benchmark-resources-uc2-flink
mountPath: /deployments/benchmark-resources/uc2-flink
- name: benchmark-resources-uc3-flink
mountPath: /deployments/benchmark-resources/uc3-flink
- name: benchmark-resources-uc4-flink
mountPath: /deployments/benchmark-resources/uc4-flink
- name: benchmark-resources-custom
mountPath: /deployments/benchmark-resources/custom
{{- if .Values.operator.sloChecker.lagTrend.enabled }} {{- if .Values.operator.sloChecker.lagTrend.enabled }}
- name: lag-trend-slo-checker - name: lag-trend-slo-checker
image: "{{ .Values.operator.sloChecker.lagTrend.image }}:{{ .Values.operator.sloChecker.lagTrend.imageTag }}" image: "{{ .Values.operator.sloChecker.lagTrend.image }}:{{ .Values.operator.sloChecker.lagTrend.imageTag }}"
...@@ -96,42 +76,6 @@ spec: ...@@ -96,42 +76,6 @@ spec:
{{- else }} {{- else }}
emptyDir: {} emptyDir: {}
{{- end }} {{- end }}
- name: benchmark-resources-uc1-kstreams
configMap:
name: benchmark-resources-uc1-kstreams
optional: true
- name: benchmark-resources-uc2-kstreams
configMap:
name: benchmark-resources-uc2-kstreams
optional: true
- name: benchmark-resources-uc3-kstreams
configMap:
name: benchmark-resources-uc3-kstreams
optional: true
- name: benchmark-resources-uc4-kstreams
configMap:
name: benchmark-resources-uc4-kstreams
optional: true
- name: benchmark-resources-uc1-flink
configMap:
name: benchmark-resources-uc1-flink
optional: true
- name: benchmark-resources-uc2-flink
configMap:
name: benchmark-resources-uc2-flink
optional: true
- name: benchmark-resources-uc3-flink
configMap:
name: benchmark-resources-uc3-flink
optional: true
- name: benchmark-resources-uc4-flink
configMap:
name: benchmark-resources-uc4-flink
optional: true
- name: benchmark-resources-custom
configMap:
name: benchmark-resources-custom
optional: true
{{- with .Values.operator.nodeSelector }} {{- with .Values.operator.nodeSelector }}
nodeSelector: nodeSelector:
{{ toYaml . | indent 2 }} {{ toYaml . | indent 2 }}
......
...@@ -281,6 +281,29 @@ operator: ...@@ -281,6 +281,29 @@ operator:
imageTag: stable imageTag: stable
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
theodoliteBenchmarks:
resourceConfigMaps:
uc1LoadGenerator: true
uc1Kstreams: true
uc1Flink: true
uc2LoadGenerator: true
uc2Kstreams: true
uc2Flink: true
uc3LoadGenerator: true
uc3Kstreams: true
uc3Flink: true
uc4LoadGenerator: true
uc4Kstreams: true
uc4Flink: true
benchmarks:
uc1Kstreams: true
uc1Flink: true
uc2Kstreams: true
uc2Flink: true
uc3Kstreams: true
uc3Flink: true
uc4Kstreams: true
uc4Flink: true
serviceAccount: serviceAccount:
create: true create: true
......
# flink # Flink
kubectl create configmap benchmark-resources-uc1-flink --from-file uc1-flink/resources kubectl create configmap benchmark-resources-uc1-flink --from-file uc1-flink/resources
kubectl create configmap benchmark-resources-uc2-flink --from-file uc2-flink/resources kubectl create configmap benchmark-resources-uc2-flink --from-file uc2-flink/resources
kubectl create configmap benchmark-resources-uc3-flink --from-file uc3-flink/resources kubectl create configmap benchmark-resources-uc3-flink --from-file uc3-flink/resources
kubectl create configmap benchmark-resources-uc4-flink --from-file uc4-flink/resources kubectl create configmap benchmark-resources-uc4-flink --from-file uc4-flink/resources
# kafka # Kafka Streams
kubectl create configmap benchmark-resources-uc1-kstreams --from-file uc1-kstreams/resources kubectl create configmap benchmark-resources-uc1-kstreams --from-file uc1-kstreams/resources
kubectl create configmap benchmark-resources-uc2-kstreams --from-file uc2-kstreams/resources kubectl create configmap benchmark-resources-uc2-kstreams --from-file uc2-kstreams/resources
kubectl create configmap benchmark-resources-uc3-kstreams --from-file uc3-kstreams/resources kubectl create configmap benchmark-resources-uc3-kstreams --from-file uc3-kstreams/resources
kubectl create configmap benchmark-resources-uc4-kstreams --from-file uc4-kstreams/resources kubectl create configmap benchmark-resources-uc4-kstreams --from-file uc4-kstreams/resources
# load generator # Load Generator
kubectl create configmap benchmark-resources-uc1-loadgen --from-file uc1-loadGen kubectl create configmap benchmark-resources-uc1-load-generator --from-file uc1-load-generator/resources
kubectl create configmap benchmark-resources-uc2-loadgen --from-file uc2-loadGen kubectl create configmap benchmark-resources-uc2-load-generator --from-file uc2-load-generator/resources
kubectl create configmap benchmark-resources-uc3-loadgen --from-file uc3-loadGen kubectl create configmap benchmark-resources-uc3-load-generator --from-file uc3-load-generator/resources
kubectl create configmap benchmark-resources-uc4-loadgen --from-file uc4-loadGen kubectl create configmap benchmark-resources-uc4-load-generator --from-file uc4-load-generator/resources
\ No newline at end of file
...@@ -18,7 +18,7 @@ spec: ...@@ -18,7 +18,7 @@ spec:
loadGenerator: loadGenerator:
resources: resources:
- configMap: - configMap:
name: "benchmark-resources-uc1-loadgen" name: "benchmark-resources-uc1-load-generator"
files: files:
- "uc1-load-generator-deployment.yaml" - "uc1-load-generator-deployment.yaml"
- "uc1-load-generator-service.yaml" - "uc1-load-generator-service.yaml"
...@@ -26,14 +26,14 @@ spec: ...@@ -26,14 +26,14 @@ spec:
- typeName: "Instances" - typeName: "Instances"
patchers: patchers:
- type: "ReplicaPatcher" - type: "ReplicaPatcher"
resource: "uc1-flink/taskmanager-deployment.yaml" resource: "taskmanager-deployment.yaml"
- type: "EnvVarPatcher" - type: "EnvVarPatcher"
resource: "uc1-flink/jobmanager-deployment.yaml" resource: "jobmanager-deployment.yaml"
properties: properties:
container: "jobmanager" container: "jobmanager"
variableName: "PARALLELISM" variableName: "PARALLELISM"
- type: "EnvVarPatcher" # required? - type: "EnvVarPatcher" # required?
resource: "uc1-flink/taskmanager-deployment.yaml" resource: "taskmanager-deployment.yaml"
properties: properties:
container: "taskmanager" container: "taskmanager"
variableName: "PARALLELISM" variableName: "PARALLELISM"
...@@ -41,12 +41,12 @@ spec: ...@@ -41,12 +41,12 @@ spec:
- typeName: "NumSensors" - typeName: "NumSensors"
patchers: patchers:
- type: "EnvVarPatcher" - type: "EnvVarPatcher"
resource: "uc1-kstreams/uc1-load-generator-deployment.yaml" resource: "uc1-load-generator-deployment.yaml"
properties: properties:
container: "workload-generator" container: "workload-generator"
variableName: "NUM_SENSORS" variableName: "NUM_SENSORS"
- type: NumSensorsLoadGeneratorReplicaPatcher - type: NumSensorsLoadGeneratorReplicaPatcher
resource: "uc1-kstreams/uc1-load-generator-deployment.yaml" resource: "uc1-load-generator-deployment.yaml"
properties: properties:
loadGenMaxRecords: "150000" loadGenMaxRecords: "150000"
kafkaConfig: kafkaConfig:
......
...@@ -15,7 +15,7 @@ spec: ...@@ -15,7 +15,7 @@ spec:
loadGenerator: loadGenerator:
resources: resources:
- configMap: - configMap:
name: "benchmark-resources-uc1-loadgen" name: "benchmark-resources-uc1-load-generator"
files: files:
- "uc1-load-generator-deployment.yaml" - "uc1-load-generator-deployment.yaml"
- "uc1-load-generator-service.yaml" - "uc1-load-generator-service.yaml"
...@@ -23,17 +23,17 @@ spec: ...@@ -23,17 +23,17 @@ spec:
- typeName: "Instances" - typeName: "Instances"
patchers: patchers:
- type: "ReplicaPatcher" - type: "ReplicaPatcher"
resource: "uc1-kstreams/uc1-kstreams-deployment.yaml" resource: "uc1-kstreams-deployment.yaml"
loadTypes: loadTypes:
- typeName: "NumSensors" - typeName: "NumSensors"
patchers: patchers:
- type: "EnvVarPatcher" - type: "EnvVarPatcher"
resource: "uc1-kstreams/uc1-load-generator-deployment.yaml" resource: "uc1-load-generator-deployment.yaml"
properties: properties:
container: "workload-generator" container: "workload-generator"
variableName: "NUM_SENSORS" variableName: "NUM_SENSORS"
- type: NumSensorsLoadGeneratorReplicaPatcher - type: NumSensorsLoadGeneratorReplicaPatcher
resource: "uc1-kstreams/uc1-load-generator-deployment.yaml" resource: "uc1-load-generator-deployment.yaml"
properties: properties:
loadGenMaxRecords: "150000" loadGenMaxRecords: "150000"
kafkaConfig: kafkaConfig:
......
...@@ -11,7 +11,7 @@ sut: ...@@ -11,7 +11,7 @@ sut:
loadGenerator: loadGenerator:
resources: resources:
- configMap: - configMap:
name: "benchmark-resources-uc1-loadgen" name: "benchmark-resources-uc1-load-generator"
files: files:
- "uc1-load-generator-deployment.yaml" - "uc1-load-generator-deployment.yaml"
- "uc1-load-generator-service.yaml" - "uc1-load-generator-service.yaml"
......
...@@ -4,21 +4,21 @@ metadata: ...@@ -4,21 +4,21 @@ metadata:
name: uc2-flink name: uc2-flink
spec: spec:
sut: sut:
resources: resources:
- configMap: - configMap:
name: "benchmark-resources-uc2-flink" name: "benchmark-resources-uc2-flink"
files: files:
- "flink-configuration-configmap.yaml" - "flink-configuration-configmap.yaml"
- "taskmanager-deployment.yaml" - "taskmanager-deployment.yaml"
- "taskmanager-service.yaml" - "taskmanager-service.yaml"
- "service-monitor.yaml" - "service-monitor.yaml"
- "jobmanager-service.yaml" - "jobmanager-service.yaml"
- "jobmanager-deployment.yaml" - "jobmanager-deployment.yaml"
#- "jobmanager-rest-service.yaml" #- "jobmanager-rest-service.yaml"
loadGenerator: loadGenerator:
resources: resources:
- configMap: - configMap:
name: "benchmark-resources-uc2-loadgen" name: "benchmark-resources-uc2-load-generator"
files: files:
- "uc2-load-generator-deployment.yaml" - "uc2-load-generator-deployment.yaml"
- "uc2-load-generator-service.yaml" - "uc2-load-generator-service.yaml"
...@@ -26,14 +26,14 @@ spec: ...@@ -26,14 +26,14 @@ spec:
- typeName: "Instances" - typeName: "Instances"
patchers: patchers:
- type: "ReplicaPatcher" - type: "ReplicaPatcher"
resource: "uc2-flink/taskmanager-deployment.yaml" resource: "taskmanager-deployment.yaml"
- type: "EnvVarPatcher" - type: "EnvVarPatcher"
resource: "uc2-flink/jobmanager-deployment.yaml" resource: "jobmanager-deployment.yaml"
properties: properties:
container: "jobmanager" container: "jobmanager"
variableName: "PARALLELISM" variableName: "PARALLELISM"
- type: "EnvVarPatcher" # required? - type: "EnvVarPatcher" # required?
resource: "uc2-flink/taskmanager-deployment.yaml" resource: "taskmanager-deployment.yaml"
properties: properties:
container: "taskmanager" container: "taskmanager"
variableName: "PARALLELISM" variableName: "PARALLELISM"
...@@ -41,12 +41,12 @@ spec: ...@@ -41,12 +41,12 @@ spec:
- typeName: "NumSensors" - typeName: "NumSensors"
patchers: patchers:
- type: "EnvVarPatcher" - type: "EnvVarPatcher"
resource: "uc2-kstreams/uc2-load-generator-deployment.yaml" resource: "uc2-load-generator-deployment.yaml"
properties: properties:
container: "workload-generator" container: "workload-generator"
variableName: "NUM_SENSORS" variableName: "NUM_SENSORS"
- type: NumSensorsLoadGeneratorReplicaPatcher - type: NumSensorsLoadGeneratorReplicaPatcher
resource: "uc2-kstreams/uc2-load-generator-deployment.yaml" resource: "uc2-load-generator-deployment.yaml"
properties: properties:
loadGenMaxRecords: "150000" loadGenMaxRecords: "150000"
kafkaConfig: kafkaConfig:
......
...@@ -4,18 +4,18 @@ metadata: ...@@ -4,18 +4,18 @@ metadata:
name: uc2-kstreams name: uc2-kstreams
spec: spec:
sut: sut:
resources: resources:
- configMap: - configMap:
name: "benchmark-resources-uc2-kstreams" name: "benchmark-resources-uc2-kstreams"
files: files:
- "uc2-kstreams-deployment.yaml" - "uc2-kstreams-deployment.yaml"
- "uc2-kstreams-service.yaml" - "uc2-kstreams-service.yaml"
- "uc2-jmx-configmap.yaml" - "uc2-jmx-configmap.yaml"
- "uc2-service-monitor.yaml" - "uc2-service-monitor.yaml"
loadGenerator: loadGenerator:
resources: resources:
- configMap: - configMap:
name: "benchmark-resources-uc2-loadgen" name: "benchmark-resources-uc2-load-generator"
files: files:
- "uc2-load-generator-deployment.yaml" - "uc2-load-generator-deployment.yaml"
- "uc2-load-generator-service.yaml" - "uc2-load-generator-service.yaml"
...@@ -23,17 +23,17 @@ spec: ...@@ -23,17 +23,17 @@ spec:
- typeName: "Instances" - typeName: "Instances"
patchers: patchers:
- type: "ReplicaPatcher" - type: "ReplicaPatcher"
resource: "uc2-kstreams/uc2-kstreams-deployment.yaml" resource: "uc2-kstreams-deployment.yaml"
loadTypes: loadTypes:
- typeName: "NumSensors" - typeName: "NumSensors"
patchers: patchers:
- type: "EnvVarPatcher" - type: "EnvVarPatcher"
resource: "uc2-kstreams/uc2-load-generator-deployment.yaml" resource: "uc2-load-generator-deployment.yaml"
properties: properties:
container: "workload-generator" container: "workload-generator"
variableName: "NUM_SENSORS" variableName: "NUM_SENSORS"
- type: NumSensorsLoadGeneratorReplicaPatcher - type: NumSensorsLoadGeneratorReplicaPatcher
resource: "uc2-kstreams/uc2-load-generator-deployment.yaml" resource: "uc2-load-generator-deployment.yaml"
properties: properties:
loadGenMaxRecords: "150000" loadGenMaxRecords: "150000"
kafkaConfig: kafkaConfig:
......
...@@ -11,7 +11,7 @@ sut: ...@@ -11,7 +11,7 @@ sut:
loadGenerator: loadGenerator:
resources: resources:
- configMap: - configMap:
name: "benchmark-resources-uc2-loadgen" name: "benchmark-resources-uc2-load-generator"
files: files:
- "uc2-load-generator-deployment.yaml" - "uc2-load-generator-deployment.yaml"
- "uc2-load-generator-service.yaml" - "uc2-load-generator-service.yaml"
......
...@@ -18,7 +18,7 @@ spec: ...@@ -18,7 +18,7 @@ spec:
loadGenerator: loadGenerator:
resources: resources:
- configMap: - configMap:
name: "benchmark-resources-uc3-loadgen" name: "benchmark-resources-uc3-load-generator"
files: files:
- "uc3-load-generator-deployment.yaml" - "uc3-load-generator-deployment.yaml"
- "uc3-load-generator-service.yaml" - "uc3-load-generator-service.yaml"
...@@ -26,14 +26,14 @@ spec: ...@@ -26,14 +26,14 @@ spec:
- typeName: "Instances" - typeName: "Instances"
patchers: patchers:
- type: "ReplicaPatcher" - type: "ReplicaPatcher"
resource: "uc3-flink/taskmanager-deployment.yaml" resource: "taskmanager-deployment.yaml"
- type: "EnvVarPatcher" - type: "EnvVarPatcher"
resource: "uc3-flink/jobmanager-deployment.yaml" resource: "jobmanager-deployment.yaml"
properties: properties:
container: "jobmanager" container: "jobmanager"
variableName: "PARALLELISM" variableName: "PARALLELISM"
- type: "EnvVarPatcher" # required? - type: "EnvVarPatcher" # required?
resource: "uc3-flink/taskmanager-deployment.yaml" resource: "taskmanager-deployment.yaml"
properties: properties:
container: "taskmanager" container: "taskmanager"
variableName: "PARALLELISM" variableName: "PARALLELISM"
...@@ -41,12 +41,12 @@ spec: ...@@ -41,12 +41,12 @@ spec:
- typeName: "NumSensors" - typeName: "NumSensors"
patchers: patchers:
- type: "EnvVarPatcher" - type: "EnvVarPatcher"
resource: "uc3-kstreams/uc3-load-generator-deployment.yaml" resource: "uc3-load-generator-deployment.yaml"
properties: properties:
container: "workload-generator" container: "workload-generator"
variableName: "NUM_SENSORS" variableName: "NUM_SENSORS"
- type: NumSensorsLoadGeneratorReplicaPatcher - type: NumSensorsLoadGeneratorReplicaPatcher
resource: "uc3-kstreams/uc3-load-generator-deployment.yaml" resource: "uc3-load-generator-deployment.yaml"
properties: properties:
loadGenMaxRecords: "150000" loadGenMaxRecords: "150000"
kafkaConfig: kafkaConfig:
......
...@@ -15,7 +15,7 @@ spec: ...@@ -15,7 +15,7 @@ spec:
loadGenerator: loadGenerator:
resources: resources:
- configMap: - configMap:
name: "benchmark-resources-uc3-loadgen" name: "benchmark-resources-uc3-load-generator"
files: files:
- "uc3-load-generator-deployment.yaml" - "uc3-load-generator-deployment.yaml"
- "uc3-load-generator-service.yaml" - "uc3-load-generator-service.yaml"
...@@ -23,17 +23,17 @@ spec: ...@@ -23,17 +23,17 @@ spec:
- typeName: "Instances" - typeName: "Instances"
patchers: patchers:
- type: "ReplicaPatcher" - type: "ReplicaPatcher"
resource: "uc3-kstreams/uc3-kstreams-deployment.yaml" resource: "uc3-kstreams-deployment.yaml"
loadTypes: loadTypes:
- typeName: "NumSensors" - typeName: "NumSensors"
patchers: patchers:
- type: "EnvVarPatcher" - type: "EnvVarPatcher"
resource: "uc3-kstreams/uc3-load-generator-deployment.yaml" resource: "uc3-load-generator-deployment.yaml"
properties: properties:
container: "workload-generator" container: "workload-generator"
variableName: "NUM_SENSORS" variableName: "NUM_SENSORS"
- type: NumSensorsLoadGeneratorReplicaPatcher - type: NumSensorsLoadGeneratorReplicaPatcher
resource: "uc3-kstreams/uc3-load-generator-deployment.yaml" resource: "uc3-load-generator-deployment.yaml"
properties: properties:
loadGenMaxRecords: "150000" loadGenMaxRecords: "150000"
kafkaConfig: kafkaConfig:
......
...@@ -11,7 +11,7 @@ sut: ...@@ -11,7 +11,7 @@ sut:
loadGenerator: loadGenerator:
resources: resources:
- configMap: - configMap:
name: "benchmark-resources-uc3-loadgen" name: "benchmark-resources-uc3-load-generator"
files: files:
- "uc3-load-generator-deployment.yaml" - "uc3-load-generator-deployment.yaml"
- "uc3-load-generator-service.yaml" - "uc3-load-generator-service.yaml"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment