diff --git a/theodolite/src/main/kotlin/theodolite/benchmark/ConfigMapResourceSet.kt b/theodolite/src/main/kotlin/theodolite/benchmark/ConfigMapResourceSet.kt
index f85b83497e5d69e43c1d4784ef86170a5436e929..19999c7802e3bbfac63310104fbdbc4c77fe0c49 100644
--- a/theodolite/src/main/kotlin/theodolite/benchmark/ConfigMapResourceSet.kt
+++ b/theodolite/src/main/kotlin/theodolite/benchmark/ConfigMapResourceSet.kt
@@ -43,14 +43,14 @@ class ConfigMapResourceSet : ResourceSet, KubernetesResource {
             resources
                 .map {
                     Pair(
-                        getKind(resource = it.value),
+                        getKind(resourceYaml = it.value),
                         it
                     )
                 }
                 .map {
                     Pair(
-                        it.second.key,
-                        loader.loadK8sResource(it.first, it.second.value)
+                        it.second.key, // filename
+                        loader.loadK8sResource(kind = it.first, resourceString = it.second.value) // K8s resource
                     )
                 }
         } catch (e: IllegalArgumentException) {
@@ -59,11 +59,11 @@ class ConfigMapResourceSet : ResourceSet, KubernetesResource {
 
     }
 
-    private fun getKind(resource: String): String {
+    private fun getKind(resourceYaml: String): String {
         val parser = YamlParserFromString()
-        val resourceAsMap = parser.parse(resource, HashMap<String, String>()::class.java)
+        val resourceAsMap = parser.parse(resourceYaml, HashMap<String, String>()::class.java)
 
         return resourceAsMap?.get("kind")
-            ?: throw DeploymentFailedException("Could not find field kind of Kubernetes resource: ${resourceAsMap?.get("name")}")
+            ?: throw DeploymentFailedException("Could not find 'kind' field of Kubernetes resource: ${resourceAsMap?.get("name")}")
     }
 }
\ No newline at end of file