yzeng25 commented on a change in pull request #683: URL: https://github.com/apache/apisix-website/pull/683#discussion_r737077434
########## File path: website/i18n/zh/docusaurus-plugin-content-blog/2021/10/27/APISIX Ingress.md ########## @@ -0,0 +1,169 @@ +--- +title: "从 0 到 1,APISIX Ingress 加入社区后的发展与收获" +author: "金卫" +authorURL: "https://github.com/gxthrj" +authorImageURL: "https://avatars.githubusercontent.com/u/4413028?v=4" +keywords: +- Apache APISIX +- APISIX Ingress Controller +- Kubernetes +- Apache +description: 本文通过从代码创始人角度,为大家描述了 APISIX Ingress 的成长历程,以及加入社区后的功能提升与社区帮助等多方面细节收获。 +tags: [technology] +--- + +> 本文通过从代码创始人角度,为大家描述了 APISIX Ingress 的成长历程,以及加入社区后的功能提升与社区帮助等多方面细节收获。 + +<!--truncate--> + +## 概念篇 + +### APISIX Ingress 概述 + +在 K8s 生态中,Ingress 作为表示 K8s 流量入口的一种资源,想要让其生效,就需要有一个 Ingress Controller 去监听 K8s 中的 Ingress 资源,并对这些资源进行相应规则的解析和实际承载流量。 + +APISIX Ingress 则是基于 Apache APISIX 的 Ingress Controller 实现,实现了对 Kubernetes 的扩展,同时也支持 Ingress resource 的原生资源定义。 + + +通过上图可以看到,APISIX Ingress 是在 Kubernetes 集群中部署,并代理 Kubernetes 外部集群的请求。然后将这些请求反向代理到 Kubernetes 集群 Service,同时也支持直接将服务推送到 Service Pod。 Review comment: ```suggestion  通过上图可以看到,APISIX Ingress 是在 Kubernetes 集群中部署,并代理 Kubernetes 外部集群的请求。然后将这些请求反向代理到 Kubernetes 集群 Service,同时也支持直接将服务推送到 Service Pod。 ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
