I’m deploying jupyterhub to k8s with the jupyterhub/jupyterhub helm. In the config file, i have:
singleuser:
image:
name: s22s/myspecial-notebook
tag: latest
pullPolicy: Always
this image was overly large (~17GB) because there were a lot of files left by installing various things that hadn’t been cleaned up properly. I’ve since fixed those, but I’d like to know how to fix the issue I was seeing with these large images.
Basically, I think the hook-image-puller container has a pretty small volume on it (maybe 16GB?), such that I got DiskPressure warnings when pulling that image, and then got out of space errors when trying to deploy with a scipy image. I looked, but couldn’t find a documented way to configure how much space the hook-image-puller has. Is there one?