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
Maybe I'm missing something but it looks like proxy parameters are parsed and then ignored. I patched it on my machine by adding
if [ ! -z $__PARM_OC_HTTP_PROXY ]; then
CMDLINE+=" --http-proxy=$__PARM_OC_HTTP_PROXY"
fi
if [ ! -z $__PARM_OC_HTTPS_PROXY ]; then
CMDLINE+=" --https-proxy=$__PARM_OC_HTTPS_PROXY"
fi
if [ ! -z $__PARM_OC_NO_PROXY ]; then
CMDLINE+=" --no-proxy=$__PARM_OC_NO_PROXY"
fi
If you like it, I will submit a pull request.
Cheers,
Michal
The text was updated successfully, but these errors were encountered:
Please do. I introduce these commands before the feature was available on oc cluster up, and nobody reminded me about it, and I forgot, since I don't use a proxy.
michalkutyla
added a commit
to michalkutyla/oc-cluster-wrapper
that referenced
this issue
Nov 5, 2017
Hello, and thanks for this project/tool. This is very useful.
For anyone else running into docker proxy issues (on MACOS/OSX), it appears as though recent versions (a few months ago) have added a proxy that cannot be disabled and this is causing workflows to break, etc.
Hi,
nice project Jorg!
Maybe I'm missing something but it looks like proxy parameters are parsed and then ignored. I patched it on my machine by adding
if [ ! -z $__PARM_OC_HTTP_PROXY ]; then
CMDLINE+=" --http-proxy=$__PARM_OC_HTTP_PROXY"
fi
if [ ! -z $__PARM_OC_HTTPS_PROXY ]; then
CMDLINE+=" --https-proxy=$__PARM_OC_HTTPS_PROXY"
fi
if [ ! -z $__PARM_OC_NO_PROXY ]; then
CMDLINE+=" --no-proxy=$__PARM_OC_NO_PROXY"
fi
If you like it, I will submit a pull request.
Cheers,
Michal
The text was updated successfully, but these errors were encountered: