Skip to content
Snippets Groups Projects
Commit 6bba3b51 authored by Benedikt Wetzel's avatar Benedikt Wetzel Committed by Sören Henning
Browse files

fix image path, small adjustments

parent f1146238
No related branches found
No related tags found
4 merge requests!159Re-implementation of Theodolite with Kotlin/Quarkus,!157Update Graal Image in CI pipeline,!85Introduce new Benchmark class and Patcher,!83WIP: Re-implementation of Theodolite with Kotlin/Quarkus
......@@ -17,12 +17,12 @@ class KubernetesBenchmarkDeployment(
): BenchmarkDeployment {
private val workloadGeneratorStateCleaner = WorkloadGeneratorStateCleaner(this.zookeeperConfig)
private val kafkaController = TopicManager(this.kafkaConfig)
private val kubernetesManager = K8sManager(DefaultKubernetesClient().inNamespace("default")) // Maybe per resource type
private val kubernetesManager = K8sManager(DefaultKubernetesClient().inNamespace("theodolite-she")) // Maybe per resource type
override fun setup() {
this.workloadGeneratorStateCleaner.deleteState()
kafkaController.createTopics(this.topics)
resources.forEach {
resources.forEach {
kubernetesManager.deploy(it)
}
}
......
......@@ -15,7 +15,7 @@ spec:
terminationGracePeriodSeconds: 0
containers:
- name: uc-application
image: uc-app:latest
image: ghcr.io/cau-se/theodolite-uc1-kstreams-app:latest
ports:
- containerPort: 5555
name: jmx
......
......@@ -18,10 +18,10 @@ loadTypes:
container: "workload-generator"
variableName: "NUM_SENSORS"
kafkaConfig:
bootstrapSever: "my-confluent-cp-kafka:9092"
bootstrapSever: "localhost:31290"
topics:
- name: "test"
partition: "1"
replication: "1"
zookeeperConfig:
server: "my-confluent-cp-zookeeper:2181"
\ No newline at end of file
server: "localhost:31953"
\ No newline at end of file
......@@ -3,8 +3,7 @@ benchmark: "benchmarkType"
load:
loadType: "NumSensors"
loadValues:
- 1000
- 2000
- 10000
resources:
resourceType: "Instances"
resourceValues:
......
......@@ -15,7 +15,7 @@ spec:
terminationGracePeriodSeconds: 0
containers:
- name: workload-generator
image: workload-generator:latest
image: ghcr.io/cau-se/theodolite-uc1-workload-generator:theodolite-kotlin-latest
env:
# Order need to be preserved for run_uc.py
- name: NUM_SENSORS
......
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