Skip to content
Snippets Groups Projects
Commit 168d8a31 authored by Benedikt Wetzel's avatar Benedikt Wetzel
Browse files

fix indent

parent 3b467f34
No related branches found
No related tags found
4 merge requests!159Re-implementation of Theodolite with Kotlin/Quarkus,!157Update Graal Image in CI pipeline,!101Add Service Monitor,!83WIP: Re-implementation of Theodolite with Kotlin/Quarkus
...@@ -5,14 +5,14 @@ import io.fabric8.kubernetes.client.NamespacedKubernetesClient ...@@ -5,14 +5,14 @@ import io.fabric8.kubernetes.client.NamespacedKubernetesClient
import io.fabric8.kubernetes.client.dsl.base.CustomResourceDefinitionContext import io.fabric8.kubernetes.client.dsl.base.CustomResourceDefinitionContext
/** /**
* Fabric8 handles custom resources as plain HashMaps. These need to be handled differently than normal * Fabric8 handles custom resources as plain HashMaps. These need to be handled differently than normal
* Kubernetes resources. The K8sCustomResourceWrapper class provides a wrapper to deploy and delete * Kubernetes resources. The K8sCustomResourceWrapper class provides a wrapper to deploy and delete
* custom resources in a uniform way. * custom resources in a uniform way.
* *
* @property map custom resource as plain hashmap * @property map custom resource as plain hashmap
* @constructor Create empty K8s custom resource wrapper * @constructor Create empty K8s custom resource wrapper
*/ */
class K8sCustomResourceWrapper(private val map : Map<String,String>) : CustomResource() { class K8sCustomResourceWrapper(private val map : Map<String,String>) : CustomResource() {
/** /**
......
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