写点什么

Knative 基本功能深入剖析:Knative Serving 之服务路由管理

2019 年 8 月 20 日

Knative 基本功能深入剖析:Knative Serving 之服务路由管理

本文主要围绕 Knative Service 域名展开,介绍了 Knative Service 的路由管理。文章首先介绍了如何修改默认主域名,紧接着深入一层介绍了如何添加自定义域名以及如何根据 path 关联到不同的 Knative Service 。期望通过本文的介绍,能够帮助您了解更多相关内容。



Knative 默认会为每一个 Service 生成一个域名,并且 Istio Gateway 要根据域名判断当前的请求应该转发给哪个 Knative Service。Knative 默认使用的主域名是 example.com,这个域名是不能作为线上服务的。


Knative Serving 的默认域名 example.com

首先需要部署一个 Knative Service,可以参考 Knative 初体验:Serving Hello World


如果你已经有了一个 Knative 集群,那么直接把下面的内容保存到 helloworld.yaml 文件中。然后执行一下 kubectl apply -f helloworld.yaml  即可把 hello 服务部署到 helloworld namespace 中。


---apiVersion: v1kind: Namespacemetadata:  name: helloworld
---apiVersion: serving.knative.dev/v1alpha1kind: Servicemetadata: name: hello namespace: helloworldspec: template: metadata: labels: app: hello annotations: autoscaling.knative.dev/target: "10" spec: containers: - image: registry.cn-hangzhou.aliyuncs.com/knative-sample/simple-app:132e07c14c49 env: - name: TARGET value: "World!"
复制代码


接下来看一下 Knative Service 自动生成的域名配置:


└─# kubectl -n helloworld get ksvcNAME    URL                                   LATESTCREATED   LATESTREADY   READY   REASONhello   http://hello.helloworld.example.com   hello-wsnvc     hello-wsnvc   True
复制代码


现在使用 curl 指定 Host 就能访问服务了。


  • 首先获取到 Istio Gateway IP;


└─# kubectl get svc istio-ingressgateway --namespace istio-system --output jsonpath="{.status.loadBalancer.ingress[*]['ip']}"47.95.191.136
复制代码


  • 然后访问 hello 服务。


└─# curl -H "Host: hello.helloworld.example.com" http://47.95.191.136/Hello World!!
复制代码


如果想要在浏览器中访问 hello 服务需要先做 host 绑定,把域名 hello.helloworld.example.com 指向 47.95.191.136 才行。这种方式还不能对外提供服务。


配置自定义主域名

下面介绍一下如何把默认的 example.com 改成我们自己的域名,假设我们自己的域名是:serverless.kuberun.com,现在执行 kubectl edit cm config-domain --namespace knative-serving ,如下图所示,添加 serverless.kuberun.com 到 ConfigMap 中,然后保存退出就完成了自定义主域名的配置。



再来看一下 Knative Service 的域名, 如下所示已经生效了。


└─# kubectl -n helloworld get ksvcNAME    URL                                              LATESTCREATED   LATESTREADY   READY   REASONhello   http://hello.helloworld.serverless.kuberun.com   hello-wsnvc     hello-wsnvc   True
复制代码


泛域名解析

Knative Service 默认生成域名的规则是 servicename.namespace.use-domain 。所以不同的 namespace 会生成不同的子域名,每一个 Knative Service 也会生成一个唯一的子域名。为了保证所有的 Service 服务都能在公网上面访问到,需要做一个泛域名解析。把 *.serverless.kuberun.com  解析到 Istio Gateway 47.95.191.136 上面去。如果你是在阿里云(万网)上面购买的域名,你可以通过如下方式配置域名解析:



现在直接通过浏览器访问 http://hello.helloworld.serverless.kuberun.com/ 就可以直接看到 helloworld 服务了:



自定义服务域名

刚才我们给 Knative 指定了一个主域名,使得 Service  基于主域名生成自己的唯一域名。但自动生成的域名不是很友好,比如刚才部署的 helloworld 的域名 hello.helloworld.serverless.kuberun.com 对于普通用户来说意义不明显、不好记忆。


如果能通过 hello.kuberun.com 访问 hello world 服务那就完美了,接下来将会介绍实现方法:


  • 先在万网上面修改域名解析,把 hello.kuberun.com  的 A 记录指向  Istio Gateway 47.95.191.136;



  • hello.kuberun.com 解析到 Istio Gateway 以后 Istio Gateway 并不知道此时应该转发到哪个服务,所以还需要配置 VirtualService 告知 Istio 如何转发。


把下面的内容保存到 hello-ingress-route.yaml 文件:


apiVersion: networking.istio.io/v1alpha3kind: VirtualServicemetadata: name: hello-ingress-route namespace: knative-servingspec: gateways: - knative-ingress-gateway hosts: - hello.helloworld.serverless.kuberun.com - hello.kuberun.com http: - match:   - uri:       prefix: "/"   rewrite:     authority: hello.helloworld.svc.cluster.local   retries:     attempts: 3     perTryTimeout: 10m0s   route:   - destination:       host: istio-ingressgateway.istio-system.svc.cluster.local       port:         number: 80     weight: 100   timeout: 10m0s   websocketUpgrade: true
复制代码


现在打开 http://hello.kuberun.com/ 就能看到 helloworld 服务了:



基于路径的服务转发

真实线上服务的场景可能是一个路径后端对应着一个应用,现在我们对刚才的 hello.kuberun.com 进行一下扩展。让 /blog 开头的路径映射到 blog service,其他的路径还是原样打到 hello service 上面。


把下面的内容保存到 blog.yaml 文件,然后执行: kubectl apply -f blog.yaml 即可完成 blog 服务的部署。


---apiVersion: v1kind: Namespacemetadata:  name: blog
---apiVersion: serving.knative.dev/v1alpha1kind: Servicemetadata: name: hello-blog namespace: blogspec: template: metadata: labels: app: hello annotations: autoscaling.knative.dev/target: "10" spec: containers: - image: registry.cn-hangzhou.aliyuncs.com/knative-sample/simple-app:132e07c14c49 env: - name: TARGET value: "Blog!"
复制代码


查看 blog 服务的默认域名:


└─# kubectl -n blog get ksvcNAME    URL                                        LATESTCREATED   LATESTREADY   READY   REASONhello   http://hello-blog.blog.serverless.kuberun.com   hello-zbm7q     hello-zbm7q   True
复制代码


现在使用浏览器打开 http://hello-blog.blog.serverless.kuberun.com 就可以访问刚刚部署的服务了:



这是默认域名,我们的需求是想要通过 http://hello.kuberun.com/blog 访问, 所以还需要修改 Istio VirtualService 的配置。如下所示在 hello-ingress-route.yaml 增加 /blog 的配置:


apiVersion: networking.istio.io/v1alpha3kind: VirtualServicemetadata:  name: hello-ingress-route  namespace: knative-servingspec:  gateways:  - knative-ingress-gateway  hosts:  - hello.helloworld.serverless.kuberun.com  - hello.kuberun.com  http:  - match:    - uri:        prefix: "/blog"    rewrite:      authority: hello-blog.blog.svc.cluster.local    retries:      attempts: 3      perTryTimeout: 10m0s    route:    - destination:        host: istio-ingressgateway.istio-system.svc.cluster.local        port:          number: 80      weight: 100  - match:    - uri:        prefix: "/"    rewrite:      authority: hello.helloworld.svc.cluster.local    retries:      attempts: 3      perTryTimeout: 10m0s    route:    - destination:        host: istio-ingressgateway.istio-system.svc.cluster.local        port:          number: 80      weight: 100    timeout: 10m0s    websocketUpgrade: true
复制代码


现在就能在浏览器中打开 http://hello.kuberun.com/blog ,如下所示:



小结

本文主要围绕 Knative Service 域名展开,介绍了 Knative Service 的路由管理。通过本文的介绍,您应该了解到如下内容:


  • Knative Service 默认的主域名是 example.com, 所有 Knative Service 生成的独立域名都是这个主域名的子域名;

  • Knative Service 生成的域名规范;

  • 如何配置 Knative Service 使用自定义的主域名,以及如何配置公网域名解析;

  • 如何基于 Istio VirtualService 实现 Knative Service 的个性化 Ingress 配置,提供生产级别的服务路由。


本文作者:


冬岛,阿里云容器平台技术专家,负责阿里云容器平台 Knative 相关工作。欢迎加入 Knative 钉钉群(群号 : 23302777)进行深入交流


相关文章:


《初识 Knative:跨平台的 Serverless 编排框架》


《Knative 初体验:Serving Hello World》


《Knative 初体验:Eventing Hello World》


《Knative 初体验:Build Hello World》


《Knative 初体验:CI/CD 极速入门》


《Knative 基本功能深入剖析:Knative Serving 的流量灰度和版本管理》


《Knative 基本功能深入剖析:Knative Serving 自动扩缩容 Autoscaler》


2019 年 8 月 20 日 08:3814075
用户头像
阿里云容器平台 ACK,企业云原生转型最佳搭档

发布了 43 篇内容, 共 17.7 次阅读, 收获喜欢 70 次。

关注

评论

发布
暂无评论
发现更多内容

如何有效防止sql注入

Java旅途

Web前端性能优化,应该怎么做?

华为云开发者社区

运维 前端 HTTP js 前端性能优化

数据仓库

JackWangGeek

SSAS查询性能最佳实践

JackWangGeek

架构师0期Week10作业2

Nan Jiang

数据挖掘

JackWangGeek

吴桐:数字货币具有稳定的避险性吗

CECBC区块链专委会

区块链 数字货币 链政经济

第十周.命题作业

刘璐

如何优雅的编写GO程序?

八两

go 优雅 语法

架构师训练营第十周作业

邵帅

区块链跨境承兑商支付系统开发,usdt支付平台搭建

WX13823153201

区块链 数字货币

推荐Scrum书籍

Bob Jiang

Scrum 敏捷

什么是死信队列

Java旅途

RabbitMQ

常见的BI项目问题和解决方案

JackWangGeek

Newbe.Claptrap 框架如何实现 Claptrap 的多样性?

newbe36524

容器 微服务 .net core ASP.NET Core

一文读懂GaussDB(for Mongo)的计算存储分离架构

华为云开发者社区

数据库 mongodb 数据 GaussDB 存储分离

可读代码编写炸鸡十 - 保持单纯

多选参数

代码质量 代码 代码优化 可读代码编写 可读代码

有意思:Go函数的闭包

申屠鹏会

go 闭包 函数

关键绩效指标KPI

JackWangGeek

微软BI解决方案的优势

JackWangGeek

window form自定义控件类型

JackWangGeek

环信助力OFashion迷橙开辟海外直播带货新通路

DT极客

两数之和

书旅

数据结构 算法 数据结构与算法

看DLI服务4核心如何提升云服务自动化运维

华为云开发者社区

Serverless 运维 运维自动化 华为云 DLI

SSIS主要功能

JackWangGeek

[翻译]分布式系统的模式-综述

流沙

架构 分布式系统

一文熟悉MySQL索引

书旅

MySQL 索引

架构师0期Week10作业1

Nan Jiang

troubleshoot之:使用JFR解决内存泄露

程序那些事

Java 内存泄露 性能调优

架构师训练营第十周总结

邵帅

5G从小就梦想着自己要迎娶:高速率、低时延、大容量三个老婆

华为云开发者社区

5G IoT 通信 华为云 NB-IoT

演讲经验交流会|ArchSummit 上海站

演讲经验交流会|ArchSummit 上海站

Knative 基本功能深入剖析:Knative Serving 之服务路由管理-InfoQ