代码之家  ›  专栏  ›  技术社区  ›  Tai

舵机测试失败:等待条件超时

  •  1
  • Tai  · 技术社区  · 6 年前

    Redis 图表。运行后 helm test myReleaseName --tls --cleanup ,我们得到了

    RUNNING: myReleaseName-redis
    ERROR: timed out waiting for the condition
    

    Github存储库中有几个问题 https://github.com/helm/helm/search?q=timed+out+waiting+for+the+condition&type=Issues

    怎么回事?

    1 回复  |  直到 5 年前
        1
  •  2
  •   Tai    6 年前

    第一个看起来令人费解,显示的信息很少,因为 --cleanup 跑步后会杀死豆荚。你可以删除它以获取更多信息。一、 因此,用

    helm test myReleaseName --tls --debug
    

    kubectl get pods 检查用于测试的吊舱。(可能是其他名字。)

    NAME                                                 READY     STATUS             RESTARTS   AG
    myReleaseName-redis                                            0/1       ImagePullBackOff   0          12h
    

    从这里看,现在更清楚的是图像有问题,结果是 . (使用 kubectl describe pod <pod-name> 然后你可以找到你用来拉图像的链接。)

    修复链接,就成功了。