我正在尝试将jpetstore应用程序部署到EKS,并且遇到了这个需要填写的变量。(https://github.com/IBM-Cloud/jpetstore-kubernetes/blob/master/jpetstore/jpetstore.yaml)

在文档中,它指出我可以使用以下命令:
Edit jpetstore/jpetstore.yaml and jpetstore/jpetstore-mmssearch.yaml and replace all instances of:
<CLUSTER DOMAIN> with your Ingress Subdomain (ibmcloud ks cluster get --cluster CLUSTER_NAME)(https://github.com/IBM-Cloud/jpetstore-kubernetes)
但这是针对ibm云的,我需要将其用于EKS。
我可以从哪里获得这个<CLUSTER DOMAIN>值?
发布于 2021-11-17 02:13:29
您可以在入口规范中定义自己的名称,例如host: jpetstore.example.com。您需要install ALB控制器;它将处理您的入口请求,并根据您的入口规范创建一个ALB。然后,您可以像这样访问:curl -H 'HOST: jpetstore.example.com' http://<your new alb endpoint>
https://stackoverflow.com/questions/69997153
复制相似问题