-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow Usage of Pre-Existing Docker Images Instead of Image Building #73
Comments
If you don't specify the images section at all in hubploy.yaml, hubploy shouldn't do any image tag munging. If it does, we should fix that. Can you try that? |
From some quick testing with a commented out |
@salvis2 oh, what error did the continuous pre-puller report? Did the hook pre-puller also report these? And was continuous pre-puller trying to pull in the 'right' image? |
I will need to spin up a new test hub and fiddle with it there. I don't recall everything, but the prepuller was doing |
Actually just testing on our hackweek cluster, since it would be nice to not have to duplicate the Docker image. I've commented out the entire Running
Yielded the error
This line is the same in your If I uncomment the
Looks like Leaving
The deploy command succeeds. However,
still shows
Trying to login and launch gives me the error If I specify the image I want within Now I re-enable the prepuller, deploy, and the I guess the conclusions are that currently,
|
Use-case here is that for the IceSat-2 Hackweek, we are using
hubploy
to deploy the Hub. We are managing the image building separately and would like to just point to it with the JupyterHub Helm chart valuejupyterhub.singleuser.image.tag
. However,hubploy
will overwrite this value with the image that is defined inhubploy.yaml
and built later.Our workaround at the moment is to base the image we build around the already built image, but that is messy and it would be much cleaner if we could just point to the previously built one.
The text was updated successfully, but these errors were encountered: