It appears that the new coder extension is detecting and setting HTTP_PROXY/HTTPS_PROXY that gets pulled from the vscode user settings. Downgrading to 1.15.0 resolved that issue for me.
local user settings.json:
"http.proxy": "http://127.0.0.1:3636",
"http.proxySupport": "off",
"http.useLocalProxyConfiguration": false,
"workbench.browser.enableRemoteProxy": false
remote settings.json
"git.useIntegratedAskPass": false,
"github.gitAuthentication": false
After launching my coder instance HTTP_PROXY/HTTPS_PROXY env vars are consistently being set to "http://127.0.0.1:3636" and there isn't a way to disable that behavior. Version 1.15.0 does not do this!
It appears that the new coder extension is detecting and setting HTTP_PROXY/HTTPS_PROXY that gets pulled from the vscode user settings. Downgrading to 1.15.0 resolved that issue for me.
local user settings.json:
remote settings.json
After launching my coder instance HTTP_PROXY/HTTPS_PROXY env vars are consistently being set to "http://127.0.0.1:3636" and there isn't a way to disable that behavior. Version 1.15.0 does not do this!