1、安装istioctl,这个见官方教程:https://istio.io/zh/docs/setup/getting-started/
2、安装组件最全的模式:
istioctl manifest apply --set profile=demo
3、若手工想加入更多的组件,请执行如下命令,比如安装kiali、prometheus:
istioctl manifest apply --set addonComponents.kiali.enabled=true
istioctl manifest apply --set addonComponents.prometheus.enabled=
4、若想要使istio-injection对于某个命名空间生效,请执行:
kubectl label namespace 命名空间名称 istio-injection=enabled