From 9bf2b5f6a7b7fa8c475586654adb6014418e215e Mon Sep 17 00:00:00 2001 From: "stu126940@mail.uni-kiel.de" <stu126940@mail.uni-kiel.de> Date: Mon, 8 Mar 2021 10:29:06 +0100 Subject: [PATCH] minor code enhancements --- .../main/kotlin/theodolite/patcher/EnvVarPatcher.kt | 8 ++++---- .../main/kotlin/theodolite/patcher/ImagePatcher.kt | 9 ++++----- .../theodolite/patcher/ResourceLimitPatcher.kt | 13 ++++++------- .../theodolite/patcher/ResourceRequestPatcher.kt | 12 ++++++------ .../src/main/resources/yaml/testBenchmarkType.yaml | 2 +- 5 files changed, 21 insertions(+), 23 deletions(-) diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/EnvVarPatcher.kt b/theodolite-quarkus/src/main/kotlin/theodolite/patcher/EnvVarPatcher.kt index a383b480d..941890ca3 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/EnvVarPatcher.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/patcher/EnvVarPatcher.kt @@ -16,13 +16,13 @@ class EnvVarPatcher(private val k8sResource: KubernetesResource, private val con } /** - * Sets the ContainerEvironmentVariables, creates new if variable does not exist. + * Sets the ContainerEnvironmentVariables, creates new if variable does not exist. * @param container - The Container - * @param map - Map of k=Name,v =Value of EnviromentVariables + * @param map - Map of k=Name,v =Value of EnvironmentVariables */ private fun setContainerEnv(container: Container, map: Map<String, String>) { - map.forEach { k, v -> - // filter for mathing name and set value + map.forEach { (k, v) -> + // filter for matching name and set value val x = container.env.filter { envVar -> envVar.name == k } if (x.isEmpty()) { diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ImagePatcher.kt b/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ImagePatcher.kt index 3a7f39cce..f1ac252fa 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ImagePatcher.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ImagePatcher.kt @@ -1,20 +1,19 @@ package theodolite.patcher import io.fabric8.kubernetes.api.model.KubernetesResource -import io.fabric8.kubernetes.api.model.Quantity import io.fabric8.kubernetes.api.model.apps.Deployment import io.fabric8.kubernetes.api.model.apps.StatefulSet -class ImagePatcher(private val k8sResource: KubernetesResource, private val container: String, private val variableName: String): AbstractPatcher(k8sResource, container, variableName) { +class ImagePatcher(private val k8sResource: KubernetesResource, private val container: String): AbstractPatcher(k8sResource, container) { - override fun <String> patch(value: String) { + override fun <String> patch(imagePath: String) { if (k8sResource is Deployment) { k8sResource.spec.template.spec.containers.filter { it.name == container }.forEach { - it.image = value as kotlin.String + it.image = imagePath as kotlin.String } } else if (k8sResource is StatefulSet) { k8sResource.spec.template.spec.containers.filter { it.name == container }.forEach { - it.image = value as kotlin.String + it.image = imagePath as kotlin.String } } } diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ResourceLimitPatcher.kt b/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ResourceLimitPatcher.kt index 500137182..d3ca8e656 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ResourceLimitPatcher.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ResourceLimitPatcher.kt @@ -8,25 +8,24 @@ import io.fabric8.kubernetes.api.model.apps.Deployment class ResourceLimitPatcher( private val k8sResource: KubernetesResource, private val container: String, - private val variableName: String -) : AbstractPatcher(k8sResource, container, variableName) { + private val limitedResource: String +) : AbstractPatcher(k8sResource, container, limitedResource) { override fun <String> patch(value: String) { - if (k8sResource is Deployment) { k8sResource.spec.template.spec.containers.filter { it.name == container }.forEach { try { if (it.resources.limits.isEmpty()) { - it.resources.limits = mapOf(variableName to Quantity(value as kotlin.String)) + it.resources.limits = mapOf(limitedResource to Quantity(value as kotlin.String)) } else { val values = mutableMapOf<kotlin.String, Quantity>() - it.resources.limits.forEach { entry -> values.put(entry.key, entry.value) } - values[variableName] = Quantity(value as kotlin.String) + it.resources.limits.forEach { entry -> values[entry.key] = entry.value } + values[limitedResource] = Quantity(value as kotlin.String) it.resources.limits = values } } catch (e: IllegalStateException) { val resource = ResourceRequirements() - resource.limits = mapOf(variableName to Quantity(value as kotlin.String)) + resource.limits = mapOf(limitedResource to Quantity(value as kotlin.String)) it.resources = resource } } diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ResourceRequestPatcher.kt b/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ResourceRequestPatcher.kt index ffb28db45..d6090875e 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ResourceRequestPatcher.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/patcher/ResourceRequestPatcher.kt @@ -8,24 +8,24 @@ import io.fabric8.kubernetes.api.model.apps.Deployment class ResourceRequestPatcher( private val k8sResource: KubernetesResource, private val container: String, - private val variableName: String -) : AbstractPatcher(k8sResource, container, variableName) { + private val requestedResource: String +) : AbstractPatcher(k8sResource, container, requestedResource) { override fun <String> patch(value: String) { if (k8sResource is Deployment) { k8sResource.spec.template.spec.containers.filter { it.name == container }.forEach { try { if (it.resources.requests.isEmpty()) { - it.resources.requests = mapOf(variableName to Quantity(value as kotlin.String)) + it.resources.requests = mapOf(requestedResource to Quantity(value as kotlin.String)) } else { val values = mutableMapOf<kotlin.String, Quantity>() - it.resources.requests.forEach { entry -> values.put(entry.key, entry.value) } - values[variableName] = Quantity(value as kotlin.String) + it.resources.requests.forEach { entry -> values[entry.key] = entry.value } + values[requestedResource] = Quantity(value as kotlin.String) it.resources.requests = values } } catch (e: IllegalStateException) { val resource = ResourceRequirements() - resource.requests = mapOf(variableName to Quantity(value as kotlin.String)) + resource.requests = mapOf(requestedResource to Quantity(value as kotlin.String)) it.resources = resource } } diff --git a/theodolite-quarkus/src/main/resources/yaml/testBenchmarkType.yaml b/theodolite-quarkus/src/main/resources/yaml/testBenchmarkType.yaml index c0d034659..de1db3c71 100644 --- a/theodolite-quarkus/src/main/resources/yaml/testBenchmarkType.yaml +++ b/theodolite-quarkus/src/main/resources/yaml/testBenchmarkType.yaml @@ -18,7 +18,7 @@ loadTypes: container: "workload-generator" variableName: "NUM_SENSORS" kafkaConfig: - bootstrapSever: "localhost:31290" + bootstrapServer: "localhost:31290" topics: - name: "input" partition: "1" -- GitLab