An open API service indexing awesome lists of open source software.

https://github.com/songleo/database-system

This repository offers a tool for quickly setting up a database system utilizing the mysql. It's perfect for Proof of Concept (PoC), educational, or testing scenarios.
https://github.com/songleo/database-system

database kind kubernetes mysql sql

Last synced: 3 months ago
JSON representation

This repository offers a tool for quickly setting up a database system utilizing the mysql. It's perfect for Proof of Concept (PoC), educational, or testing scenarios.

Awesome Lists containing this project

README

          

This repository offers a tool for quickly setting up a database system utilizing the mysql. It's perfect for Proof of Concept (PoC), educational, or testing scenarios.

```
$ kubectl run -it --rm --image=mysql --restart=Never mysql-client -- mysql -h mysql -padmin
# or
$ kubectl port-forward svc/mysql 3306:3306
```