Skip to content

Instantly share code, notes, and snippets.

@yogendratamang48
Last active September 14, 2021 10:48
Show Gist options
  • Save yogendratamang48/722ba9b3604d15f254389c8865c7dddf to your computer and use it in GitHub Desktop.
Save yogendratamang48/722ba9b3604d15f254389c8865c7dddf to your computer and use it in GitHub Desktop.
MySQL Tools
apiVersion: v1
kind: Pod
metadata:
name: mysql-tools
labels:
purpose: mysql-tools
spec:
containers:
- name: test-mysql
image: mysql:5.7.34
command: ["/bin/bash"]
args: ["-c", "while true; do echo hello; sleep 10;done"]
restartPolicy: OnFailure
mysql -u $DB_USER -h $MYSQL_HOST -p
mysqldump -u $DB_USER -h $MYSQL_HOST --no-tablespaces -p $B_NAME > dbFull.sql
mysql -u $DB_USER -h $MYSQL_HOST -p"<PASS>" mydb < ~/winhome/Downloads/dbFull.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment