MariaDB can be accessed via port 3306 on the following DNS name from within your cluster:
{{ template "fullname" . }}.{{ .Release.Namespace }}.svc.cluster.local

To connect to your database run the following command:

   kubectl run {{ template "fullname" . }}-client --rm --tty -i --image bitnami/mariadb --command -- mysql -h {{ template "fullname" . }} {{- if .Values.mariadbRootPassword }} -p {{ .Values.mariadbRootPassword }}{{- end -}}
