MaiBot/helm-chart/templates/pre-check.yaml

9 lines
425 B
YAML

# 检查EULA和PRIVACY
{{- if not .Values.core.EULA_AGREE }}
{{- fail "You must accept the EULA by setting 'core.EULA_AGREE: true'. EULA: https://github.com/MaiM-with-u/MaiBot/blob/main/EULA.md" }}
{{- end }}
{{- if not .Values.core.PRIVACY_AGREE }}
{{- fail "You must accept the Privacy Policy by setting 'core.PRIVACY_AGREE: true'. Privacy Policy: https://github.com/MaiM-with-u/MaiBot/blob/main/PRIVACY.md" }}
{{- end }}