Removed proxying from pip in Dockerfile, added K8S files

This commit is contained in:
2025-09-22 14:17:02 +02:00
parent 059a07b7ab
commit d1dba83e30
8 changed files with 156 additions and 2 deletions

19
k8s/ingress.yaml Normal file
View File

@@ -0,0 +1,19 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: django
namespace: vorgabenui
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /
spec:
rules:
- host: vorgabenui.local
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: django
port:
number: 8000