_validation.tpl 344 B

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