Print chart name log when fail to generate

This commit is contained in:
Moshe-Rappaport-CA
2022-08-31 15:26:24 +03:00
parent 26d4664cc5
commit fc3912ca7d
+1 -1
View File
@@ -47,7 +47,7 @@ func LoadResourcesFromHelmCharts(basePath string) (map[string][]workloadinterfac
if err == nil {
wls, errs := chart.GetWorkloadsWithDefaultValues()
if len(errs) > 0 {
logger.L().Error(fmt.Sprintf("Rendering of Helm chart template failed: %v", errs))
logger.L().Error(fmt.Sprintf("Rendering of Helm chart template '%v', failed: %v", chart.GetName(), errs))
continue
}