diff --git a/library/common/Chart.yaml b/library/common/Chart.yaml index 26713585..75584dcc 100644 --- a/library/common/Chart.yaml +++ b/library/common/Chart.yaml @@ -15,7 +15,7 @@ maintainers: name: common sources: null type: library -version: 23.0.5 +version: 23.0.6 annotations: artifacthub.io/category: "integration-delivery" artifacthub.io/license: "BUSL-1.1" diff --git a/library/common/templates/values/_validate.tpl b/library/common/templates/values/_validate.tpl index a6edc079..d4c52c59 100644 --- a/library/common/templates/values/_validate.tpl +++ b/library/common/templates/values/_validate.tpl @@ -12,7 +12,14 @@ {{/* Ideally we would want to extract the error only, but because it usually contains ":", It gets parsed as dict and it cant regex matched it afterwards */}} - {{- fail (printf "Chart - Values contain an error that may be a result of merging. Values containing the error: \n\n %v \n\n See error above values." $allValues) -}} + {{- fail (printf "%s \n %s \n\n %s \n %v \n %s \n\n %s" + "Chart - Values contain an error that may be a result of merging. Make sure you don't have any invalid YAML characters starting a value." + "Renderd Values containing the error:" + "=============================================================================================" + $allValues + "=============================================================================================" + "See error above values." + ) -}} {{- end -}} {{- end -}}