Fabian Kramm
Fabian Kramm
@shyim oh thanks, I'll take a look!
@ibuildthecloud we made some progress on this so that when using devpod ssh this works, however for some reason when using the vscode IDE, it is still creating non-login shells...
@gdw2 thanks for creating this issue! Mhh, might be a problem with the credentials helper, I guess we would need to do agent-forwarding for the connection there, do you use...
@segfly @gdw2 after some discussing we will fallback in such cases to localhost, clone the repo there and then upload it to the server once, this should fix all cases...
@segfly @gdw2 yes for now at least if you want to clone via ssh keys that you only have locally. Its a fallback mechanism for now which would work most...
Maybe we can check if remote-containers is actually installed and then disable it only if found
@gbonnefille thanks a lot for your PR! Looks good to me, but since we essentially reuse the same piece of code multiple times there, would be good to create a...
Just put a function like this into package `pkg/http`: ``` func GetClient() *http.Client { customTransport := http.DefaultTransport.(*http.Transport).Clone() customTransport.TLSClientConfig = &tls.Config{InsecureSkipVerify: true} return &http.Client{Transport: customTransport} } ``` Then call that from...
@otlet thanks for the issue! We don't have immediate plans to actually work on this, so I'll close this for now, but please feel free to reopen if this is...
@mrsimonemms you can find that at https://github.com/loft-sh/devpod/blob/main/pkg/devcontainer/setup/setup.go#L232, I guess we can still execute these sequentially in the beginning if thats easier to implement and then eventually do the proper execute...