URL Web 前端示例的请求超时错误 运行 Azure Kubernetes 服务

URL Request timeout error for the webfrontend example running Azure Kubernetes Service

我按照下面的例子,没有报错就走到了最后

https://docs.microsoft.com/en-us/azure/aks/quickstart-helm

除了下面的外部IP地址超时错误,

http://20.62.159.20/

有什么想法吗?

这是由 docker 注册表凭据引起的。该文档没有向您展示如何为 ACR 设置它。有两种方法可以解决。一种是您可以使用 CLI 命令将 ACR 附加到 AKS 群集:

az aks update -g mygroup -n myaks --attach-acr myacr

另一种方法是使用 ACR 的秘密。 Here 是使用服务主体创建秘密的步骤,您也可以使用 ACR 的管理员用户和密码。然后像这样更改文件 values.yaml

imagePullSecrets:
    - name: secretName