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 91d2cb0 commit 1909322Copy full SHA for 1909322
pkg/platform/provider/baremetal/phases/image/image.go
@@ -57,7 +57,7 @@ func PullKubernetesImages(c *v1.Cluster, s ssh.Interface, option *Option) error
57
return err
58
}
59
} else {
60
- cmd = fmt.Sprintf("nerdctl -n k8s.io pull %s", image)
+ cmd = fmt.Sprintf("nerdctl --insecure-registry -n k8s.io pull %s", image)
61
_, err := s.CombinedOutput(cmd)
62
if err != nil {
63
if strings.Contains(err.Error(), "502 Bad Gateway") {
0 commit comments