Skip to content
Snippets Groups Projects
Commit 884d7a12 authored by Lorenz Boguhn's avatar Lorenz Boguhn
Browse files

fixed spelling

parent ae746bf2
No related branches found
No related tags found
4 merge requests!159Re-implementation of Theodolite with Kotlin/Quarkus,!157Update Graal Image in CI pipeline,!83WIP: Re-implementation of Theodolite with Kotlin/Quarkus,!78Resolve "Implement Quarkus/Kotlin protype"
...@@ -23,7 +23,7 @@ class DeploymentManager { ...@@ -23,7 +23,7 @@ class DeploymentManager {
val inputStream: InputStream = path.byteInputStream() val inputStream: InputStream = path.byteInputStream()
val client = DefaultKubernetesClient().inNamespace("default") val client = DefaultKubernetesClient().inNamespace("default")
val core = client.configMaps(). val core = client.configMaps()
//val deployment = client.apps().deployments().load(absolute + path) //val deployment = client.apps().deployments().load(absolute + path)
......
...@@ -39,7 +39,7 @@ class YamlLoader(client: NamespacedKubernetesClient) { ...@@ -39,7 +39,7 @@ class YamlLoader(client: NamespacedKubernetesClient) {
try { try {
service = f(path) service = f(path)
} catch (e: Exception) { } catch (e: Exception) {
logger.info("You potentially misspeled the path: $path") logger.info("You potentially misspelled the path: $path")
logger.info("$e") logger.info("$e")
} }
......
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