I'm trying to setup a private dagger module monorepo, and when I pushed the repository then try to call it, I always get permission
I've made sure the ssh-agent is up and running, and SSH_AUTH_SOCK is set, and the key is added with ssh-add, if I run normal ssh -T HOSTNAME I get logged in, if I add vvv for verbosity I can see that it's authenticating with agent forwarding
...
debug1: Requesting authentication agent forwarding.
debug2: channel 0: request auth-agent-req@openssh.com confirm 0
...
Now another thing is if I go back to v0.9 cookbooks and take one of the private repository examples, it doesn't work there either
https://archive.docs.dagger.io/0.9/cookbook#access-private-git-repository
Even if I try to use a "public" repository under the private instance using ssh and remove the socket part, I keep getting could not read from remote repository error
if I change the above cookbook to use https instead and remove ssh agent part with it works
So is there any way where I can get more logs from dagger's ssh connection attempt?
Filesystem