feat: dodaj Kubernetes manifeste za FastAPI + Postgres

This commit is contained in:
2026-05-19 10:49:28 +02:00
parent e09482dde9
commit 103841d02a
9 changed files with 175 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
apiVersion: v1
kind: Service
metadata:
name: fastapi-api-service
namespace: student-mirko416
spec:
selector:
app: fastapi-api
ports:
- port: 80
targetPort: 8000
type: ClusterIP