W0710 01:02:53.399958 3385 initconfiguration.go:120] Usage of CRI endpoints without URL scheme is deprecate d and can cause kubelet errors in the future. Automatically prepending scheme "unix" to the "criSocket" with value "/var/run/dockershim.sock". Please update your configuration!failed to pull image "registry.cn-hangzhou.aliyuncs.com/google_containers/kube-apiserver:v1.27.0": output: E07 10 01:02:53.528709 3408 remote_image.go:171] "PullImage from image service failed" err="rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial unix /var/run/dockershim.sock: connect: connection refused\"" image="registry.cn-hangzhou.aliyuncs.com/google_containers/kube-apiserver:v1.27.0"time="2023-07-10T01:02:53+08:00" level=fatal msg="pulling image: rpc error: code = Unavailable desc = connecti on error: desc = \"transport: Error while dialing dial unix /var/run/dockershim.sock: connect: connection refused\"", error: exit status 1 To see the stack trace of this error execute with --v=5 or higher
时间: 2024-04-09 16:29:27 浏览: 1084
kubeadm&cri-docker&containerd部署1.26.9版本k8s集群
根据您提供的错误信息,看起来是在拉取名为 "registry.cn-hangzhou.aliyuncs.com/google_containers/kube-apiserver:v1.27.0" 的容器镜像时遇到了问题。
错误信息中提到了关于 CRI(Container Runtime Interface)的警告和错误。警告信息表示在使用 CRI 端点时没有指定 URL 方案会被弃用,并建议在 "criSocket" 的值中自动添加 "unix" 方案。同时,错误信息显示在与容器运行时通信时遇到了连接错误。
根据错误信息,看起来是在与 dockershim.sock 通信时发生了连接拒绝的问题。可能原因是 dockershim.sock 文件不存在或没有正确的访问权限。
请确保 dockershim.sock 文件存在并且具有正确的访问权限。您可以尝试检查文件路径是否正确,并使用适当的权限设置来确保容器运行时可以访问该文件。
如果问题仍然存在,请提供更多的上下文和操作步骤,以便我能够更准确地帮助您解决问题。
阅读全文