We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NoProxy is []string type for ProxyConfig struct and we are directly using it with %s which is causing issue for different operators.
[]string
ProxyConfig
%s
$ ./crc status --log-level debug DEBU HTTP-PROXY: http://proxy-user1:xxx@ec2-xxxx:3128, HTTPS-PROXY: http://proxy-user1:xxx@ec2-xxxx.com:3128, NO-PROXY: [127.0.0.1 localhost .testing] DEBU Unexpected operator status for insights: Disabled DEBU network operator is degraded, Reason: InvalidProxyConfig DEBU About to run SSH command: df -B1 --output=size,used,target /sysroot | tail -1 DEBU SSH cmd err, output: <nil>: 32719437824 8936333312 /sysroot CRC VM: Running OpenShift: Stopped Disk Usage: 8.936GB of 32.72GB (Inside the CRC VM) Cache Usage: 30.93GB Cache Directory: /Users/prkumar/.crc/cache
The text was updated successfully, but these errors were encountered:
Issue #947 use GetNoProxyString() to set no proxy for proxy resource
0a86c47
NoProxy is `[]string` type for ProxyConfig struct and we are directly using it with `%s` for proxy resource which need a `string` type.
fb19918
praveenkumar
No branches or pull requests
NoProxy is
[]string
type forProxyConfig
struct and we are directly using it with%s
which is causing issue for different operators.The text was updated successfully, but these errors were encountered: