对于接收的请求,HTTP规则根据请求方法(GET、POST等)选择处理。本文介绍如何配置请求方法匹配。
前提条件
已完成准备工作,并部署helloworld服务和sleep服务。具体操作,请参见准备工作。
操作步骤
验证服务配置。
在ACK集群对应的KubeConfig环境下,执行以下命令,进入sleep环境开启bash。
kubectl exec -it deploy/sleep -- sh
执行以下命令,向helloworld服务发送请求。
curl helloworld:5000/hello
预期输出为以下两者之一,helloworld-v1和helloworld-v2随机响应。
Hello version: v2, instance: helloworld-v2-7d48f6b995-6**** Hello version: v1, instance: helloworld-v1-6986f64596-s****
使用istioctl工具,执行以下命令,为helloworld服务开启L7 Waypoint。
istioctl x waypoint apply --service-account helloworld-v1 istioctl x waypoint apply --service-account helloworld-v2
使用以下内容,创建目标规则。具体操作,请参见管理目标规则。
apiVersion: networking.istio.io/v1beta1 kind: DestinationRule metadata: name: helloworld namespace: default spec: host: helloworld subsets: - labels: version: v1 name: v1 - labels: version: v2 name: v2
使用以下内容,创建虚拟服务,添加HTTP Method Matching配置(GET请求由helloworld-v1处理)。具体操作,请参见管理虚拟服务。
apiVersion: networking.istio.io/v1beta1 kind: VirtualService metadata: name: helloworld-vs namespace: default spec: hosts: - helloworld http: - match: - method: exact: GET route: - destination: host: helloworld subset: v1
验证配置是否生效。
在ACK集群对应的KubeConfig环境下,执行以下命令,进入sleep环境开启bash。
kubectl exec -it deploy/sleep -- sh
执行以下命令,向helloworld服务发送GET请求。
curl -X GET helloworld:5000/hello
预期输出始终为以下结果,由helloworld-v1响应。
Hello version: v1, instance: helloworld-v1-6986f64596-s****
文档内容是否对您有帮助?