Files
chart/community/n8n/1.2.21/templates/_validation.tpl
2024-01-25 11:09:48 +00:00

7 lines
344 B
Smarty

{{- define "n8n.validation" -}}
{{- $host := .Values.n8nConfig.webHost -}}
{{- if or (hasPrefix "http://" $host) (hasPrefix "https://" $host) (hasSuffix "/" $host) (contains ":" $host) -}}
{{- fail "n8n - Do not start with [http(s)://] or have a trailing slash [/] or have port [:###] in [Web Host] field" -}}
{{- end -}}
{{- end -}}