Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codersomya/k8s-pubsub-app
microservice using kafka and python
https://github.com/codersomya/k8s-pubsub-app
Last synced: 12 days ago
JSON representation
microservice using kafka and python
- Host: GitHub
- URL: https://github.com/codersomya/k8s-pubsub-app
- Owner: coderSomya
- Created: 2024-07-23T12:00:42.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-23T19:28:42.000Z (4 months ago)
- Last Synced: 2024-07-24T16:47:58.587Z (4 months ago)
- Language: Python
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
__Prerequisites__:
- Docker
- Minikube# Get started:
## Start minikube
```
minikube start
```## Deploy kafka
```
kubectl apply -f k8s/kafka/zookeeper-deployment.yaml
kubectl apply -f k8s/kafka/kafka-deployment.yaml
```## Deploy Postgres
```
kubectl apply -f k8s/postgres/postgres-deployment.yaml
```## Build and Deploy Services
```
cd order-service && ./build.sh && cd ..
cd consumer-service && ./build.sh && cd ..
cd transaction-service && ./build.sh && cd ..
cd analytics-service && ./build.sh && cd ..
cd notification-service && ./build.sh && cd ..
```