Files
helm_chart/azure/mariadb/templates/tests.yaml
2025-05-23 11:04:03 +08:00

12 lines
307 B
YAML
Executable File

{{- if .Values.tests.enabled }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ template "mariadb.fullname" . }}-tests
data:
run.sh: |-
@test "Testing MariaDB is accessible" {
mysql -h {{ template "mariadb.fullname" . }} -uroot -p$MARIADB_ROOT_PASSWORD -e 'show databases;'
}
{{- end }}