_helpers.tpl 302 B

12345678
  1. {{/* Validate domain name */}}
  2. {{- define "validateDomain" -}}
  3. {{- $parts := splitList "." .Values.ingress.host -}}
  4. {{- $baseHost := join "." (slice $parts 1 (len $parts)) -}}
  5. {{- if ne $baseHost "ai-native.glm.ai" -}}
  6. {{- fail "域名必须是ai-native.glm.ai的子域名" -}}
  7. {{- end -}}
  8. {{- end -}}