You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{- /* Add suggestion to error message if found */ -}}
187
+
{{- if$suggestion -}}
188
+
{{- $errorMsg=printf"%s\n\n⚠️ Did you mean '%s'?"$errorMsg$suggestion -}}
189
+
{{- end -}}
190
+
{{- /* Use suggestion if available, otherwise use lodestar as example */ -}}
191
+
{{- $exampleType:="lodestar" -}}
192
+
{{- if$suggestion -}}
193
+
{{- $exampleType=$suggestion -}}
194
+
{{- end -}}
195
+
{{- $errorMsg=printf"%s\n\nHow to fix this:\n • Using --set flag:\n --set validatorClient.type=%s\n\n • In your values.yaml file:\n validatorClient:\n type: %s\n\n • Using custom values file:\n helm install my-dv-pod obol/dv-pod -f myvalues.yaml\n\nFor more information, see the Validator Client section in charts/dv-pod/README.md\n"$errorMsg$exampleType$exampleType -}}
0 commit comments