在 GKE 中安装 istio 时出现以下错误
Kubernetes 版本 = 1.11.2-gke.18
Istio 版本 = 1.0.4
Kubectl = 来自谷歌仓库的最新消息
Error from server (NotFound): error when creating
"`install/kubernetes/istio-demo-auth.yaml`":
the server could not find the requested resource
(post `gatewaies.networking.istio.io`)
我试图按照 GCP 上的教程进行操作:https://cloud.google.com/kubernetes-engine/docs/tutorials/installing-istio
最佳答案
您缺少 istio 所需的 CustomResourceDefinition
,因此出现此错误。您需要从 istio 文件夹应用以下命令:
kubectl apply -f install/kubernetes/helm/istio/templates/crds.yaml
这将创建所有 CRD,如虚拟服务、目的地规则等。
尝试按照 Istio 的官方文档在 GKE 上安装它:
关于kubernetes - 在 GKE 中安装 istio 时出错 = 服务器找不到请求的资源(发布 `gatewaies.networking.istio.io`),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53670430/