Hello, I am currently trying to deploy the test app on a flyte-binary
I have added a 'registry' parameter in model.remote, I added it with the url of our private registry, such as:
model.remote(
dockerfile="Dockerfile",
config_file=str(Path.home() / ".flyte" / "config.yaml"),
project="digits-classifier",
domain="development",
registry="
registry.company.com",
)
when I run
unionml deploy app:model
, authentication to flyte is OK, but deploy fails with the following error :
[unionml] failed to deploy app:model: Error while fetching server API version: ('Connection aborted.', FileNotFoundError(2, 'No such file or directory'))
I suppose that credentials to access the docker registry are missing, but I don't know how to set it to be used by unionml ? I suppose there's some variables to set, but no documentation about this, even in flyte ?!
can someone help me to find out something to solve this problem