kubeasz/manifests/mariadb-cluster/mariadb/templates/tests.yaml

10 lines
264 B
YAML
Raw Normal View History

2019-01-25 10:21:40 +08:00
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;'
}