Fixed templating of values in k8s components
[ccsdk/cds.git] / ms / blueprintsprocessor / functions / k8s-connection-plugin / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / functions / k8s / definition / template / K8sConfigTemplateComponent.kt
index 87a4d4e..ceb4e80 100644 (file)
@@ -258,7 +258,7 @@ open class K8sConfigTemplateComponent(
         val fileContent = templateFile.bufferedReader().readText()
         val finalFileContent = BlueprintVelocityTemplateService.generateContent(
             fileContent,
-            params, true
+            params.toString(), true
         )
         if (!destinationFolder.exists())
             Files.createDirectories(destinationFolder.toPath())