You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Seems on line 269 - 276 of oc-install.ts didn't use the proxy for versioned url even the proxy option has specified?
It may cause the oc setup to break if the pipeline agent is behind the web proxy.
if (url) {
// check if url is valid otherwise take the latest stable oc cli for this version
const response = await fetch(url, { method: 'HEAD' });
findURLofLatest = !response.ok;
}
if (findURLofLatest) {
url = InstallHandler.ocBundleURL(version.value, osType, true);
}
(Although the azure pipeline agent can specify proxy and proxy pass for self host agent as global setting. )
The text was updated successfully, but these errors were encountered:
Seems on line 269 - 276 of oc-install.ts didn't use the proxy for versioned url even the proxy option has specified?
It may cause the oc setup to break if the pipeline agent is behind the web proxy.
(Although the azure pipeline agent can specify proxy and proxy pass for self host agent as global setting. )
The text was updated successfully, but these errors were encountered: