Azure AKS - 预览 Istio 服务网格添加

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

我已经将 istio 服务网格添加到作为预览版的我的 aks 集群中。我能够访问产品页面,并且看到 sidecar 正在与服务一起运行。如何访问服务网格 UI 并检查服务网格、流量路由配置。如果我错过了请分享。

azure-aks istio
1个回答
0
投票

正如您所提到的,您已经安装了 Istio 并且可以访问产品页面。我没有展示整个 Istio 设置,请跳到重点 - 为了访问 service mesh UI 并检查服务网格,请使用任一 安装 Kiali

kubectl apply -f https://raw.githubusercontent.com/istio/istio/release-1.20/samples/addons/kiali.yaml

或通过舵

helm install \
  --namespace istio-system \
  --set auth.strategy="anonymous" \
  --repo https://kiali.org/helm-charts \
  kiali-server \
  kiali-server

enter image description here enter image description here

enter image description here

kubectl 端口转发 svc/kiali 20001:20001 -n enter image description here 访问 Kiali 后,您可以探索服务网格的各个方面。 enter image description here

仪表板提供图表、应用程序、工作负载、服务和 Istio 配置的视图。

参考文档-

Azure Kubernetes 服务 (AKS) 与 Istio 服务网格:综合指南

MS Doc - 为 Azure Kubernetes 服务部署基于 Istio 的服务网格插件

使用 Kiali 可视化网格

通过 Istio 插件安装

© www.soinside.com 2019 - 2024. All rights reserved.