This commit is contained in:
2026-03-24 10:59:50 +01:00
commit 7c1c161ced
19 changed files with 856 additions and 0 deletions

21
jupyterhub-ingress.yaml Normal file
View File

@@ -0,0 +1,21 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: jupyterhub
namespace: jupyterhub
annotations:
nginx.ingress.kubernetes.io/proxy-read-timeout: "3600"
nginx.ingress.kubernetes.io/proxy-send-timeout: "3600"
spec:
ingressClassName: nginx
rules:
- host: jupyterhub.local
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: proxy-public
port:
number: 80