Description
OS: Mac OS 13.1
VS Code: 1.71.1
Dev Containers extension: 0.279.0
Dev container CLI: 0.29.0
I submitted an issue on the VS Code remote extension repo but it wasn't getting any responses, so trying here...
I've created and published a feature to our internal Artifactory repo named docker.xyz.com/john/devcontainer-features/test-alpine:0
, and confirmed that I can launch via the devcontainer CLI a devcontainer that refers to this feature.
When I try to open in a container using the same devcontainer.json
with VS Code, it fails when trying to run devcontainer read-configuration
.
When I try to run that failing command from a shell, it works fine. I'm going to have a close look at the code but was wondering if anyone else has encountered this and found a workaround?
FAILURE LOG: failure.log
SUCCESS LOG: success.log
Activity
jglogan commentedon Feb 15, 2023
I added a log message here and installed the modified
devContainersSpecCLI.js
, and I now see the self-signed cert error below.My OS certificate configuration includes this trusted root, and when invoking the CLI from a shell, there's no problem picking it up. It seems that there is an issue with certificate handling in the
Code Helper (Plugin) --ms-enable-electron-run-as-node
invocation context. Could there be a problem with Electron not using the OS certificate config in this invocation?chrmarti commentedon Feb 20, 2023
You are using Node 18 when it succeeds which might have updated root certificates built-in when compared to Node 16 as shipped with the Electron version you use when it fails. Could the root certificate have been added or is it private?
NodeJS ships with the Mozilla cert store built-in and does not read the OS cert store from what I know. (For VS Code extensions we found a way to add the OS certs to NodeJS, but these are not carried over to the CLI we spawn from the extension.)
jglogan commentedon Feb 20, 2023
You're right.
node
as invoked from my shell uses a modified cert store that includes the additional root.Is there any workaround that would allow us to do the same for the CLI invoked from the remote containers? I'd love to show other developers in my org how to make good use of dev container features, but it's a bit difficult with this issue standing in the way.
jglogan commentedon Feb 20, 2023
@chrmarti Thanks for the suggestion...I've confirmed that this crude hack does allow open in container from VSCode when I replace
.vscode/extensions/ms-vscode-remote.remote-containers-0.279.0/dist/spec-node/devContainersSpecCLI.js
. Not really a good solution but it does demonstrate exactly what you asserted.[-]`read-configuration` works from command line but fails in VS Code "open in container"[/-][+]Read root certificates from OS cert stores[/+]chrmarti commentedon Feb 21, 2023
We might be able to reuse part of what we do for VS Code in https://github.com/microsoft/vscode-proxy-agent.
jglogan commentedon Feb 24, 2023
@chrmarti Thank you for your help! I'm not familiar with how new features get taken in, is there any way for me to know how soon this feature could be added? Is this a VS Code Remote Dev change, or a dev container CLI change?
chrmarti commentedon Feb 27, 2023
This would be only a dev container CLI change. (The repo referenced above might help us get there.)
We will comment here once we make progress. (Not scheduled at the moment.)
erichaydel commentedon Apr 20, 2023
Is there any idea of when this will make the schedule? We're also having issues at my org with this since we have a proxy.
3 remaining items