feat: dodaj kubernetes manisest za FastAPI + Postgres

This commit is contained in:
Vinko Jakeljic
2026-05-19 10:32:48 +02:00
parent 4380a423b1
commit 56004974dd
9 changed files with 174 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
apiVersion: v1
kind: Service
metadata:
name: postgres-service
namespace: student-vinko004
spec:
selector:
app: postgres
ports:
- port: 5432
targetPort: 5432
type: ClusterIP