没有这样的图像:docker.io/openshift/origin-node-problem-detector:v3.11.0

我正在尝试为node-problem-detector安装OpenShift,但广告连播显示此错误。

 Warning  Failed   1h (x30 over 3h)    kubelet,server  Error: ErrImagePull
  Normal   Pulling  1h (x31 over 3h)    kubelet,server  pulling image "docker.io/openshift/origin-node-problem-detector:v3.11.0"
  Normal   BackOff  23m (x805 over 3h)  kubelet,server  Back-off pulling image "docker.io/openshift/origin-node-problem-detector:v3.11.0"
  Warning  Failed   4m (x888 over 3h)   kubelet,server  Error: ImagePullBackOff

现在的图像在哪里?

uyghun 回答:没有这样的图像:docker.io/openshift/origin-node-problem-detector:v3.11.0

oc describe pod 检查输出事件:ImagePullBackoff错误

在您的情况下,我认为该图像无法从Internet提取。

调试步骤

尝试拉动docker映像并在计算机上手动标记

通过执行“ oc get pods -o wide”来识别节点

ssh进入无法拉出docker映像的节点(如果可以)

通过执行ping检查节点是否可以解析docker注册表的DNS。

尝试在节点上手动拉docker镜像

如果您使用的是私人注册表,请检查您的机密是否存在并且机密是否正确。您的机密也应位于同一名称空间中。一些注册表具有限制IP地址访问的防火墙。防火墙可能会阻止拉动

某些配置项使用临时docker机密创建部署。因此,秘密会在几天后过期。

,
repository docker.io/openshift/origin-node-problem-detector not found: does not exist or no pull access

我猜该存储库不可用。还是可以拉它?

本文链接:https://www.f2er.com/3095744.html

大家都在问