Bookinfo是istio官网示例,应用程序分为四个单独的微服务:
productpage
。该productpage
微服务调用details
和reviews
微服务来填充页面。details
。该details
微服务包含图书信息。reviews
。该reviews
微服务包含了书评。它们调用ratings
微服务。ratings
。该ratings
微服务包含预定伴随书评排名信息。
reviews
微服务有3个版本:
- 版本v1不会调用该
ratings
服务。- 版本v2调用该
ratings
服务,并将每个等级显示为1到5个黑星★。- 版本v3调用该
ratings
服务,并将每个等级显示为1到5个红色星号★。BookInfo架构图:
如果想要在Istio中运行Bookinfo,Bookinfo本身不需要任何改动,只需要为Bookinfo的微服务注入Istio的Sidecar。最终架构图如下:
所有的微服务都与Envoy边车打包在一起,该Envoy边车拦截对服务的出/入请求,并与Istio控制面交互,提供路由、采集、实施各种策略等。
[root@k8s-master istio-1.4.2]# pwd
/root/istio/istio-1.4.2
kubectl label namespace default istio-injection=enabled
kubectl apply -f samples/bookinfo/platform/kube/bookinfo.yaml
你也可以手动为这个yaml注入sidecar再部署,参考Istio使用【sidecar注入】
kubectl apply -f <(istioctl kube-inject -f samples/bookinfo/platform/kube/bookinfo.yaml)
[root@k8s-master istio-1.4.2]# kubectl get pod
NAME READY STATUS RESTARTS AGE
details-v1-74f858558f-7gx6r 2/2 Running 0 31h
productpage-v1-8554d58bff-fwcj4 2/2 Running 0 31h
ratings-v1-7855f5bcb9-r7z5l 2/2 Running 0 31h
reviews-v1-59fd8b965b-jppqr 2/2 Running 0 31h
reviews-v2-d6cfdb7d6-rx648 2/2 Running 0 31h
reviews-v3-75699b5cfb-qpdjm 2/2 Running 0 31h
[root@k8s-master istio-1.4.2]# kubectl get svc
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
details ClusterIP 10.102.10.128 9080/TCP 31h
productpage ClusterIP 10.110.251.239 9080/TCP 31h
ratings ClusterIP 10.99.146.247 9080/TCP 31h
reviews ClusterIP 10.102.77.22 9080/TCP 31h
kubectl exec -it $(kubectl get pod -l app=ratings -o jsonpath='{.items[0].metadata.name}') -c ratings -- curl productpage:9080/productpage | grep -o ".* "
Simple Bookstore App
kubectl apply -f samples/bookinfo/networking/bookinfo-gateway.yaml
[root@k8s-master istio-1.4.2]# kubectl get gateway
NAME AGE
bookinfo-gateway 30h
下面可以通过Isito的入口网关来访问了,在访问前,需要确定Isito网关IP和端口。
获取Istio入口网关IP和端口:参考官网
kubectl get svc istio-ingressgateway -n istio-system NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE istio-ingressgateway LoadBalancer 10.110.94.234
15020:32344/TCP,80:31380/TCP,443:31390/TCP,31400:31400/TCP,15029:31933/TCP,15030:30470/TCP,15031:31361/TCP,15032:31151/TCP,15443:31081/TCP 2d2h 如果
EXTERNAL-IP
设置了该值,则您的环境具有可用于入口网关的外部负载平衡器。如果EXTERNAL-IP
值是(或永久
),则您的环境不为入口网关提供外部负载平衡器。在这种情况下,您可以使用服务的节点端口来访问网关。
确定端口:
这里80对应的端口是Http服务的端口,映射的主机端口31380;
这里443对应的端口是Https服务的端口,映射的主机端口31390;
确定IP:
可以通过下面命令找个hostIP。
[root@k8s-master istio-1.4.2]# kubectl get po -l istio=ingressgateway -n istio-system -o yaml | grep hostIP: -C3 --- state: running: startedAt: "2019-12-24T06:46:29Z" hostIP: 192.168.1.212 phase: Running podIP: 10.244.3.136 qosClass: Burstable ---
也可以通过下面的命令找到Ingress部署的节点。
[root@k8s-master istio-1.4.2]# kubectl get po -l istio=ingressgateway -n istio-system -o wide NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES istio-ingressgateway-6b7bfd7459-wljhh 1/1 Running 0 2d2h 10.244.3.136 k8s-02
浏览器访问刚刚或者的IP+端口+/productpage,例如我的是http://192.168.1.212:31380/productpage
不停的刷新页面,可以看到返回的Reviewer是不同的版本。
针对samples/bookinfo/networking/bookinfo-gateway.yaml,我们可以看看默认配置做了啥。
[root@k8s-master istio-1.4.2]# cat samples/bookinfo/networking/bookinfo-gateway.yaml
apiVersion: networking.istio.io/v1alpha3
kind: Gateway
metadata:
name: bookinfo-gateway
spec:
selector:
istio: ingressgateway # use istio default controller
servers:
- port:
number: 80
name: http
protocol: HTTP
hosts:
- "*"
---
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: bookinfo
spec:
hosts:
- "*"
gateways:
- bookinfo-gateway
http:
- match:
- uri:
exact: /productpage
- uri:
prefix: /static
- uri:
exact: /login
- uri:
exact: /logout
- uri:
prefix: /api/v1/products
route:
- destination:
host: productpage
port:
number: 9080