k8s平台安装istio
Istio 最新版本下载
istio github地址: https://github.com/istio
这个里边有很多 关于istio的工具 还有他的源码
istio 安装包下载地址:
安装包下载地址
注:
istio 的安装方式有很多种 istioctl istiooperato 等等
一. 下载软件包
下载这个安装包 不过国外的网站下载的会有点慢
我们可以使用迅雷去帮我们下载
二. 解压安装 istio
1.解压缩
tar xfvz istio-1.15.0-rc.0-linux-amd64.tar.gz
2. 命令执行环境
cd istio-1.15.0-rc.0/
cp -a bin/istioctl /usr/local/bin/
把istioctl 执行脚本放到 PATH下 以便于我们在任何地方都能执行istio命令
3.安装istio
在k8s的集群控制节点上执行安装命令:
istioctl install --set profile=demo -y
出现一下即为安装成功
3.检查
kubectl get po -n istio-system
kubectl get svc -n istio-system
所有的pod 都是running状态即为成功
3.1 因为污点问题无法安装
如果pod在 penning
使用命令 kubectl describe po -n istio-system PodName 查看详细信息显示
node(s) had taints that the pod didn't tolerate 2 node(s) didn't match node selector
这是因为k8s节点有污点 给污点去掉 即可恢复正常
查看污点命令:
kubectl describe nodes node | grep Taints
注: 上边的第二个node 是我的控制节点名字
去掉污点命令: kubectl taint nodes node bar:NoSchedule-
一般master 会默认的打上污点 master污点去除 跟Node一样
3.2因为镜像拉取不到 无法安装
如果 pod一直没有running
查看详细信息 显示 pull image docker.io/istio/proxyv2:1.10.1
问题就是拉取不到 他需要的镜像
阿里 网易的镜像仓库 都有镜像
阿里允镜像仓库地址:
https://cr.console.aliyun.com/cn-hangzhou/instances/images?accounttraceid=d48f5716b9de42228a87156021e9f426llog
拉取到镜像之后:
需要手动给镜像该标签
docker tag image-source-name:verison image-dest-name:version
更多推荐
所有评论(0)