charts/devlake/templates/validate.yaml (17 lines of code) (raw):
{{- if and .Values.lake.encryptionSecret.autoCreateSecret (not .Values.lake.encryptionSecret.secret) }}
{{- fail
"Helm test requires lake.encryptionSecret.secret.\n\n - If you're upgrading from DevLake v0.17.x or earlier versions, please get the encryption secret by copying the ENCODE_KEY value from /app/config/.env of the lake pod (e.g. devlake-lake-0);\n - If not, get the encryption secret via command `openssl rand -base64 2000 | tr -dc 'A-Z' | fold -w 128 | head -n 1`.\n\nFor more information, please check https://github.com/apache/incubator-devlake-helm-chart"
}}
{{- end }}
{{- if and .Values.ui.basicAuth.enabled .Values.ui.basicAuth.autoCreateSecret (or (not .Values.ui.basicAuth.user) (not .Values.ui.basicAuth.password)) }}
{{- fail "Helm test requires ui.basicAuth.user and ui.basicAuth.password" }}
{{- end }}
{{- if and (eq .Values.option.database "mysql") .Values.option.autoCreateSecret (or (not .Values.mysql.username) (not .Values.mysql.password) (not .Values.mysql.database)) }}
{{- fail "Helm test requires mysql.username, mysql.password and mysql.database" }}
{{- end }}
{{- if and .Values.option.autoCreateSecret (eq .Values.option.database "mysql") (not .Values.mysql.useExternal) (not .Values.mysql.rootPassword) }}
{{- fail "Helm test requires mysql.rootPassword" }}
{{- end }}
{{- if and (not .Values.grafana.enabled) (not .Values.grafana.external.url) }}
{{- fail "Helm test requires grafana.enabled to be true or grafana.external.url to be provided" }}
{{- end }}