Hi all,
I am trying to register my workflow to my remote server using
pyflyte register
, but there seems to be an error in it,
this is my config.yaml file,
admin:
# For GRPC endpoints you might want to use dns:///flyte.myexample.com
endpoint: dns:///<ip>:30080
insecure: true
insecureSkipVerify: true
authType: Pkce
console:
endpoint: http://<ip>:30080
logger:
show-source: true
level: 0
and this is the command I've used,
$ pyflyte register wf/wf.py.py -p flytesnacks -d development -v v0
Running pyflyte register from ... with images ImageConfig(default_image=Image(name='default', fqn='<http://cr.flyte.org/flyteorg/flytekit|cr.flyte.org/flyteorg/flytekit>', tag='py3.9-1.9.0'), images=[Image(name='default', fqn='<http://cr.flyte.org/flyteorg/flytekit|cr.flyte.org/flyteorg/flytekit>', tag='py3.9-1.9.0')]) and image destination folder /root on 1 package(s) ('wf.py',)
Registering against <ip>:30080
Detected Root wf/, using this to create deployable package...
No output path provided, using a temporary directory at /tmp/tmpf0r53rz7 instead
Failed with Unknown Exception <class 'keyring.errors.InitError'> Reason: Failed to create the collection: Prompt dismissed..
Failed to create the collection: Prompt dismissed..
The remote server is reachable from the machine, I tried getting the UI in browser and it works fine, but there seems to be a problem in
pyflyte register
.