https://github.com/codewithdpk/kuber
Controller to deploy Kubernetes namespaces, helm charts and monitor their health status using UI.
https://github.com/codewithdpk/kuber
Last synced: 11 months ago
JSON representation
Controller to deploy Kubernetes namespaces, helm charts and monitor their health status using UI.
- Host: GitHub
- URL: https://github.com/codewithdpk/kuber
- Owner: codewithdpk
- Created: 2024-05-31T05:29:43.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-03T19:26:42.000Z (about 2 years ago)
- Last Synced: 2024-06-03T22:27:25.661Z (about 2 years ago)
- Language: TypeScript
- Homepage:
- Size: 175 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kubernetes Controller
## Prerequites
- Must have installed and running Minikube on local machine
- `kubectl` and `helm` cli tools.
- Nodejs
- Docker & Postgres Images
## Steps
1. Run Docker Compose file to setup database
```bash
docker compose up
```
2. Install Dependancy
```bash
pnpm install
```
3. Run prisma schema and sync to DB
```bash
pnpx prisma generate
prisma db push
```
4. Start development server
```bash
pnpm run start:dev
```