Add cmpv2Certificate flag, removed hyphens from config under postgres and enhanced...
[dcaegen2/platform.git] / mod2 / helm-generator / helmchartgenerator-core / src / main / java / org / onap / dcaegen2 / platform / helmchartgenerator / chartbuilder / ChartBuilder.java
index 21f5dae..677466b 100644 (file)
@@ -69,6 +69,6 @@ public class ChartBuilder {
     public File build(String specFileLocation, String chartTemplateLocation, String outputLocation, String specSchemaLocation ) throws Exception {
         validator.validateChartTemplateStructure(chartTemplateLocation);
         ChartInfo chartInfo = specParser.extractChartInfo(specFileLocation, chartTemplateLocation, specSchemaLocation);
-        return chartGenerator.generate(chartTemplateLocation, chartInfo, outputLocation);
+        return chartGenerator.generate(chartTemplateLocation, chartInfo, outputLocation, specFileLocation);
     }
 }