Istio官网:https://istio.io/latest/zh/

下载istio-1.4.5

链接:https://pan.baidu.com/s/1WtvRTeih_6PumGp2Q2D3UA 
提取码:lxce

安装

解压后在/etc/profile配置环境变量

ISTIO_HOME=/usr/local/istio-1.4.5
MAVEN_HOME=/usr/local/maven
PATH=$PATH:${MAVEN_HOME}/bin:${ISTIO_HOME}/bin
export PATH MAVEN_HOME ISTIO_HOME

#使环境变量生效
source /etc/profile
#查看版本号
istioctl version --remote=false
#查看istio的profile
istioctl profile list
#安装istio
istioctl manifest apply --set profile=demo

查看pod启动情况

卸载

istioctl manifest generate --set profile=demo | kubectl delete -f -