Project

General

Profile

Bug #43755

Updated by Sebastian Wagner over 4 years ago

Say I want to run teuthology on my cloned repo, I pass @--ceph-repo https://github.com/jan--f/ceph.git@. --ceph-repo https://github.com/jan--f/ceph.git. 

 This breaks the cepadm task as the url is fed to download_cephadm() and git archive errors when it gets a https remote url: 

 <pre> 
 git archive --remote=https://github.com/ceph/ceph.git 80fa7deacaf86abd2058512c121e5c6f38f2caff src/cephadm/cephadm                                                  
 fatal: operation not supported by protocol 
 </pre> 

 This might be github specfic. 

 We could just curl from githubs archive pages, but I don't know if that works for git.ceph.com and other git remotes.

Back