Martin.B

Results 144 comments of Martin.B

Hi @Mert-Ergin A few remarks, before answering your question :) 1. Did you add the `extra_index_url` to the `~/trains.conf` ? As you can see [here](https://github.com/allegroai/trains-agent/blob/master/docs/trains.conf#L53) we support having multiple indexes...

Hi, I'm updating here that the latest version of `clearml-agent` now includes venv caching capabilities 🎉 🎊 Add this section to your `~/clearml.conf` file on the agent's machine ``` agent...

Hi @austinkeller > Or is it a more R&D-friendly replacement? Kind of, but also integrates with Kubeflow :) Specifically, Kubeflow assumes all steps are self contained containers, and that data...

@mctigger I think that in order to make it work you need : 1. Add to the the following `extra_docker_arguments` ``` agent.extra_docker_arguments: ["-v", "$SSH_AUTH_SOCK:$SSH_AUTH_SOCK", "-e", "SSH_AUTH_SOCK=$SSH_AUTH_SOCK", ] ``` Reference: https://github.com/allegroai/clearml-agent/blob/22d5892b12efa2acde304658ad0f08594b3e4ce6/docs/clearml.conf#L131...

> Regarding 2. How do I make sure that ~/.ssh is not mounted/copied? `docker run -it bash` then inside the docker `ls ~/.ssh` > Docker: Error response from daemon: invalid...

@mctigger I think we should add a flag forcing the agent to mount the `SSH_AUTH_SOCK`. Maybe just below [force_git_ssh_protocol](https://github.com/allegroai/clearml-agent/blob/9dfa1294e2dc3a2b0920003a4379e6130702dad9/docs/clearml.conf#L25) we could add `use_ssh_auth_sock: false` , WDYT?

@mctigger, I think the idea is for the `clearml-agent` to do the socket mounting automatically (i.e. resolve the `$SSH_AUTH_SOCK`) and at the same time disable the auto `.ssh` mount. How...

Thanks @mctigger for pinging ! I forgot to update here, the latest RC (1.0.1rc3) already contains an option to disable the SSH mount: `export CLEARML_AGENT_DISABLE_SSH_MOUNT=1` The auto SSH_AUTH_SOCK check should...

@H4dr1en that sounds like a good idea, there is already a --debug flag, but it will not output the conda results to screen. Should not be a problem to add...

Hi @212792736 I'll try to clarify , we should have two files `~/.ssh/id_rsa.pub` one on local machine one on the remote machine. You have to make sure you put the...