0

我正在尝试使用以下步骤安装 Appmesh:https ://www.eksworkshop.com/advanced/330_servicemesh_using_appmesh/appmesh_installation/install_appmesh/

但是,当我运行此命令时:

helm upgrade -i appmesh-controller eks/appmesh-controller \
--namespace appmesh-system \
--set region=$AWS_REGION \
--set serviceAccount.create=false \
--set serviceAccount.name=appmesh-controller \
--set tracing.enabled=true \
--set tracing.provider=x-ray

我收到此错误:

错误:无法下载“eks/appmesh-controller”

知道为什么它会失败吗?

谢谢!

4

1 回答 1

0

这是因为您需要添加eks-chartsrepo,请尝试运行以下命令

helm repo add eks https://aws.github.io/eks-charts

您可以在分步指南中找到更多详细信息。 https://docs.aws.amazon.com/app-mesh/latest/userguide/getting-started-kubernetes.html

于 2021-12-21T15:53:13.757 回答