Jupyter running including extended body size
This commit is contained in:
parent
0bee18d40d
commit
e7e6c66862
|
|
@ -264,6 +264,18 @@ helm upgrade --install nextcloud-phpmyadmin bitnami/phpmyadmin -n nextcloud -f n
|
||||||
|
|
||||||
### backup & restore
|
### backup & restore
|
||||||
|
|
||||||
|
#TODO
|
||||||
|
|
||||||
|
## Jupyter
|
||||||
|
|
||||||
|
Using the project [zero-to-jupyterhub](https://zero-to-jupyterhub.readthedocs.io/en/latest/setup-jupyterhub/setup-jupyterhub.html). Helm chart can be found [here](https://github.com/jupyterhub/zero-to-jupyterhub-k8s/tree/master/jupyterhub).
|
||||||
|
|
||||||
|
```sh
|
||||||
|
helm repo add jupyterhub https://jupyterhub.github.io/helm-chart/
|
||||||
|
helm upgrade --cleanup-on-fail --install jupyter jupyterhub/jupyterhub --namespace datalab --values datalab/jupyter-values.yaml
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
## mailu
|
## mailu
|
||||||
|
|
||||||
Using the [mailu helm chart](https://github.com/Mailu/helm-charts/tree/master/mailu).
|
Using the [mailu helm chart](https://github.com/Mailu/helm-charts/tree/master/mailu).
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,29 @@
|
||||||
|
auth:
|
||||||
|
dummy:
|
||||||
|
password: ko3lei5EiW
|
||||||
|
whitelist:
|
||||||
|
users:
|
||||||
|
- fabi
|
||||||
|
- mop
|
||||||
|
|
||||||
|
proxy:
|
||||||
|
service:
|
||||||
|
type: ClusterIP
|
||||||
|
secretToken: 1d82f77641d097ae362f9fa684ce1629956b3c036f01ac91dc9112aa718cdbe9
|
||||||
|
|
||||||
|
singleuser:
|
||||||
|
#defaultUrl: "/lab"
|
||||||
|
image:
|
||||||
|
name: "jupyter/tensorflow-notebook"
|
||||||
|
tag: latest
|
||||||
|
|
||||||
|
ingress:
|
||||||
|
enabled: true
|
||||||
|
hosts:
|
||||||
|
- "jupyter.haumdaucher.de"
|
||||||
|
annotations:
|
||||||
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
||||||
|
tls:
|
||||||
|
- hosts:
|
||||||
|
- jupyter.haumdaucher.de
|
||||||
|
secretName: jupyter-haumdaucher-de
|
||||||
|
|
@ -7,3 +7,5 @@ controller:
|
||||||
useHostPort: true
|
useHostPort: true
|
||||||
dnsPolicy: ClusterFirstWithHostNet
|
dnsPolicy: ClusterFirstWithHostNet
|
||||||
reportNodeInternalIp: true
|
reportNodeInternalIp: true
|
||||||
|
configAnnotations:
|
||||||
|
nginx.ingress.kubernetes.io/proxy-body-size: 10m
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue