在GKE上的ISTIO版本和升级它

问题描述 投票:0回答:1

我想尝试在gke上部署WASM扩展,使用这个演示程序。https:/github.comGoogleCloudPlatformmicroservices-demo。

发现GKE还不支持istio 1.5.x。https:/cloud.google.comistiodocsistio-on-gkeversions。

所以我就试了一下$> istioctl upgrade --force并得到'安装完成'的信息,如这里https:/gist.github.comtaegyunkimdc00a34934968bd6adf13fb2b5ec1ff9。然后按照建议重新启动豆荚

为了验证更新,我运行了 $> istioctl version 并得到了这个。

client version: 1.5.2
citadel version: 1.4.6-gke.0
galley version: 1.4.6-gke.0
ingressgateway version: 1.4.6-gke.0
pilot version: 1.4.6-gke.0
policy version: 1.4.6-gke.0
sidecar-injector version: 1.4.6-gke.0
telemetry version: 1.4.6-gke.0
pilot version: 1.5.2
data plane version: 1.4.6-gke.0 (18 proxies)

它看起来不像是更新了。有什么办法可以正确地做到这一点吗?

google-kubernetes-engine istio envoyproxy
1个回答
0
投票
  1. 删除旧版的istio
  2. istioctl manifest apply [ 这将安装默认的配置文件 ] 。
  3. 如果需要演示配置文件,那么istioctl manifest apply --set profile=demo。

0
投票

目前还不能安装 Istio 版本 1.5.XGCP Cloud Console 如下图所示。

Enable Istio

最新的版本是 1.4.6-gke.0 如这里所说。Cloud.google.com: Istio: 版本

有一个功能请求,支持 Istio 1.5.X 关于 Issuetracker.google.com。Istio 1.5 on GKE


最好的安装方式 Istio 1.5.X 关于 GKE 群集将是。

  • 确定现有的集群是否有不能删除的应用程序。
    • 如果... 是的,是的 然后按照官方的文件来做。Cloud.google.com: Istio: 卸载
    • 如果 没有 新建一个群组 使得 IstioGCP Dashboard.
  • 获取证书 GKE 簇有 gcloud.
  • 遵循以下文件 Istio 场地安装 istioctl: Istio.io。安装Istioctl.
  • 运行命令。istioctl manifest apply.

经过这些步骤后,command.com应该输出:: $ istioctl version 应该输出。

client version: 1.5.4
control plane version: 1.5.4
data plane version: 1.5.4 (2 proxies)

如果你有任何问题,请告诉我。

最新问题
© www.soinside.com 2019 - 2024. All rights reserved.