viant/endly

Problem with exec:run

pja237 opened this issue ยท 1 comments

Hello gentlemen,

i'm a late newcomer to this tool, and i'm hitting the wall from the start, so please have patience with me if this shows to be a beginners mistake ๐Ÿ˜„

So i'm just trying to execute a hello world pipeline:

pipeline:
  task_init:
    action_hello:
      action: print
      message: hello world
  task_test:
    run_action:
      action: exec:run
      commands:
        - /usr/bin/hostname

with unprivileged user, id_rsa key is in place, ssh localhost works, but when i try endly on that yaml, it hangs on run_action:

[run[action_hello]                                                                                                                                                                                 workflow.print]
hello world
[run[run_action]                                                                                                                                                                                         exec.run]
^C

I've tried with both the binary release and by building from master, with same result.
Also i've been trying to reread the docs to see what i'm doing wrong, but i can't figure it out.

In the logs, i see successful authentication and session:

May 20 17:15:07 test.local.lan sshd[389240]: Accepted publickey for pja from ::1 port 45506 ssh2: RSA SHA256
May 20 17:15:07 test.local.lan systemd-logind[1063]: New session 72 of user pja.
May 20 17:15:07 test.local.lan systemd[1]: Started Session 72 of user pja.
May 20 17:15:07 test.local.lan sshd[389240]: pam_unix(sshd:session): session opened for user pja by (uid=0)
May 20 17:15:07 test.local.lan PackageKit[1663]: search-file transaction /25790_dddaaedd from uid 1000 finished with success after 59ms

What am i missing here? ๐Ÿ˜„

and to answer myself and close this ticket, i was missing the redhat-lsb-core package.

My apologies for interruption. ๐Ÿ˜„