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.
- Host: GitHub
- URL: https://github.com/songleo/database-system
- Owner: songleo
- License: apache-2.0
- Created: 2024-01-07T09:18:55.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-08T03:32:37.000Z (over 2 years ago)
- Last Synced: 2025-03-16T06:27:34.976Z (over 1 year ago)
- Topics: database, kind, kubernetes, mysql, sql
- Language: Shell
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```