We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f805a16 commit 69cac01Copy full SHA for 69cac01
pkg/cmd/join.go
@@ -224,7 +224,10 @@ var joinCommand = &cli.Command{
224
return fmt.Errorf("failed to check proxy config for local IP: %w", err)
225
}
226
if !proxyOK {
227
- return fmt.Errorf("no-proxy config %q does not allow access to local IP %q", jcmd.InstallationSpec.Proxy.NoProxy, localIP)
+ logrus.Errorf("This node's IP address %s is not included in the no-proxy list (%s).", localIP, jcmd.InstallationSpec.Proxy.NoProxy)
228
+ logrus.Infof(`The no-proxy list cannot easily be modified after initial installation.`)
229
+ logrus.Infof(`Recreate the first node and pass all node IP addresses to --no-proxy.`)
230
+ return ErrNothingElseToAdd
231
232
233
isAirgap := c.String("airgap-bundle") != ""
0 commit comments