Description
Chart deployment fails when schedulers are enabled with
│ Error: malformed chart or values:
│ templates/scheduler-extn.yaml: unable to parse YAML: invalid Yaml document separator: apiVersion: v1
Helm lint output with schedulers enabled
==> Linting charts/neuron-helm-chart
[INFO] Chart.yaml: icon is recommended
[ERROR] templates/scheduler-extn.yaml: unable to parse YAML: invalid Yaml document separator: apiVersion: v1
Fix
This should be fixable by removing the leading - from {{- if .Values.scheduler.serviceAccount.create -}}
|
{{- if .Values.scheduler.serviceAccount.create -}} |
Description
Chart deployment fails when schedulers are enabled with
Helm lint output with schedulers enabled
Fix
This should be fixable by removing the leading
-from{{- if .Values.scheduler.serviceAccount.create -}}neuron-helm-charts/charts/neuron-helm-chart/templates/scheduler-extn.yaml
Line 43 in 8172e5e