kubernetes istio

目录

一、部署

二、部署示例应用

三、部署遥测组件

四、流量管理

五、熔断


官网:https://istio.io/latest/zh/about/service-mesh/

一、部署

提前准备好文件

tar zxf 15t10-1.19.3-linux-amd64.tar.gz
cd 15t10-1.19.3/
export PATH=$PWD/bin:$PATH

istioctl install --set profile=demo -y
kubectl get pod -A

kubernetes istio_第1张图片

给命名空间添加标签,指示 Istio 在部署应用的时候,自动注入 Envoy 边车代理

二、部署示例应用

kubectl apply -f samples/bookinfo/platform/kube/bookinfo.yaml
kubectl apply -f samples/bookinfo/networking/bookinfo-gateway.yaml

kubernetes istio_第2张图片kubernetes istio_第3张图片

kubernetes istio_第4张图片kubernetes istio_第5张图片

三、部署遥测组件

kubectl apply -f samples/addons

kubernetes istio_第6张图片

kubernetes istio_第7张图片 

 待插件部署完毕后,修改kiali服务的访问方式为Loadbalancer

kubernetes istio_第8张图片

访问kiali:http://192.168.67.125:20001/

kubernetes istio_第9张图片

四、流量管理

将所有流量路由到每个微服务的 v1 版本

kubectl apply -f samples/bookinfo/networking/destination-rule-all.yaml
kubectl apply -f samples/bookinfo/networking/virtual-service-all-v1.yaml

kubernetes istio_第10张图片

kubernetes istio_第11张图片

 来自名为 Jason 的用户的所有流量将被路由到服务 reviews:v2

kubectl apply -f samples/bookinfo/networking/virtual-service-reviews-test-v2.yaml

kubernetes istio_第12张图片

创建故障注入规则以延迟来自测试用户 jason 的流量

kubectl apply -f samples/bookinfo/networking/virtual-service-ratings-test-delay.yaml
用户 jason 登陆到 /productpage 页面,出现了一个问题:Reviews 部分显示了错误消息
kubernetes istio_第13张图片

设置流量转移,将所有流量转移到 reviews:v3

vim  samples/bookinfo/networking/virtual-service-reviews-test-v2.yaml
kubectl apply -f   samples/bookinfo/networking/virtual-service-reviews-test-v2.yaml

 kubernetes istio_第14张图片kubernetes istio_第15张图片

修改延迟规则为任何低于 2.5 秒的数值,例如 2 秒

vim  samples/bookinfo/networking/virtual-service-ratings-test-delay.yaml
kubectl apply -f   samples/bookinfo/networking/virtual-service-ratings-test-delay.yaml

kubernetes istio_第16张图片kubernetes istio_第17张图片

把 50% 的流量从 reviews:v1 转移到 reviews:v3    一半v1 一半v3

kubectl apply -f samples/bookinfo/networking/virtual-service-reviews-50-v3.yaml

kubernetes istio_第18张图片kubernetes istio_第19张图片

当reviews:v3 微服务已经稳定,可以通过应用 Virtual Service 规则将 100% 的流量路由 reviews:v3:

kubectl apply -f samples/bookinfo/networking/virtual-service-reviews-v3.yaml

kubernetes istio_第20张图片

清理:

samples/bookinfo/platform/kube/cleanup.sh

kubernetes istio_第21张图片

五、熔断

部署 httpbin 服务
kubectl apply -f samples/httpbin/httpbin.yaml
配置熔断规则
kubectl apply -f - <
增加一个客户端
kubectl apply -f samples/httpbin/sample-client/fortio-deploy.yaml

kubernetes istio_第22张图片kubernetes istio_第23张图片

登入客户端 Pod 并使用 Fortio 工具调用 httpbin 服务

export fortio-deploy-6cf68cc4c-qfcb=$(kubectl get pods -l app=fortio -o 'jsonpath={.items[0].metadata.name}')

kubectl exec "fortio-deploy-6cf68cc4c-qfcb" -c fortio -- /usr/bin/fortio curl -quiet http://httpbin:8000/get

kubernetes istio_第24张图片

触发熔断器

发送并发数为 2 的连接(-c 2),请求 20 次(-n 20)

kubectl exec "fortio-deplov-6cf68cc4c-abfcb" -c fortio -- /usr/bin/fortio load -c 2 -qps 0 -n 20 -loglevel Warning http://httpbin:8000/get
istio-proxy  确实允许存在一些误差

kubernetes istio_第25张图片

 kubernetes istio_第26张图片

将并发连接数提高到 3 个

kubectl exec "fortio-deploy-6cf68cc4c-qbfcb" -c fortio -- /usr/bin/fortio load -c 3 -qps 0 -n 30 -loglevel Warning http://httpbin:8000/get

kubernetes istio_第27张图片

将并发连接数提高到 5 个   均被熔断器拦截

kubectl exec "fortio-deploy-6cf68cc4c-qbfcb" -c fortio -- /usr/bin/fortio load -c 5 -qps 0 -n 30 -loglevel Warning http://httpbin:8000/get

 清理

kubectl delete destinationrule httpbin

kubectl delete -f samples/httpbin/sample-client/fortio-deploy.yaml
kubectl delete -f samples/httpbin/httpbin.yaml

kubernetes istio_第28张图片

回收istio

istioctl uninstall -y --purge
kubectl label namespace default istio-injection-

kubernetes istio_第29张图片kubernetes istio_第30张图片

你可能感兴趣的:(kubernetes,kubernetes,istio,容器)