首先,您需要确认default-http-backend的Pod确实处于ImagePullBackOff状态。您可以使用以下命令来查看Pod的状态: bash kubectl get pods -n <namespace> | grep default-http-backend 请将<namespace>替换为实际部署default-http-backend的命名空间,如果是默认命名空间则可能不需要指定。 2. 检查Pod描...
The image of default-http-backend is for amd64, not arm64. Here is a solution fromforum: nerdctl pull mirrorgooglecontainers/defaultbackend-arm64:1.4 kubectlsetimage deployment/default-http-backend default-http-backend=mirrorgooglecontainers/defaultbackend-arm64:1.4 -n kubesphere-controls-system kubec...