Hi guys
I just tried to connect binderhub to a custom private registry. The registry is unsecure (http) but requires basic auth.
I followed 3. Set up BinderHub — BinderHub 0.1.0 documentation
First remark: I could not set DockerRegistry.token_url
to None
or null
, as the field is declared as Unicode
. So I ended up using ""
.
My binder config:
config:
BinderHub:
use_registry: true
image_prefix: "my.registry.priv:5000/priv/"
push_secret: "regcred"
DockerRegistry:
token_url: ""
registry:
url: "http://my.registry.priv:5000"
username: "chucknorris"
password: "cannot_guess_his_pw"
Now, binder seems to be able to authenticate. Still if I try to build an image, it fails.
The build pod quickly appears, then disappears.
The only debug info I am able to gather is a k8s event
Warning Failed pod/jupyter-admin
Failed to pull image ... : rpc error: code = Unknown desc = Error response from daemon: Head ... : no basic auth credentials
Therefore, I conclude that the registry credentials do not arrive at the hub pod.
Next, I tried to add
jupyterhub:
hub:
imagePullSecret:
create: true
automaticReferenceInjection: true
registry: my.registry.priv:5000
username: "chucknorris"
password: "cannot_guess_his_pw"
But still the same error.
Does somebody here have experience with private registries?