diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/k8s/K8sCustomResourceWrapper.kt b/theodolite-quarkus/src/main/kotlin/theodolite/k8s/K8sCustomResourceWrapper.kt index 8d5ed111ab1091440f5abf44c5b127464b40a461..8b3ac08265d5caa75f602b18e279e36efd24e187 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/k8s/K8sCustomResourceWrapper.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/k8s/K8sCustomResourceWrapper.kt @@ -5,14 +5,14 @@ import io.fabric8.kubernetes.client.NamespacedKubernetesClient import io.fabric8.kubernetes.client.dsl.base.CustomResourceDefinitionContext /** - * 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 - * custom resources in a uniform way. - * - * @property map custom resource as plain hashmap - * @constructor Create empty K8s custom resource wrapper - */ - class K8sCustomResourceWrapper(private val map : Map<String,String>) : CustomResource() { +* 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 +* custom resources in a uniform way. +* +* @property map custom resource as plain hashmap +* @constructor Create empty K8s custom resource wrapper +*/ +class K8sCustomResourceWrapper(private val map : Map<String,String>) : CustomResource() { /**