mirror of
https://github.com/jcwimer/startup-infrastructure
synced 2026-03-24 14:24:43 +00:00
3 lines
178 B
Bash
3 lines
178 B
Bash
#!/bin/bash
|
|
kubectl run mysql-client --image=mysql:5.7 -it --rm --restart=Never \
|
|
-- mysql -h mysql-cluster-mysql -u root -ppassword -e "show databases; show slave status;" |