You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by ma...@apache.org on 2021/04/10 14:30:15 UTC

[apisix-website] branch master updated: fix: add truncate and source to newly added blog (#296)

This is an automated email from the ASF dual-hosted git repository.

majunjie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-website.git


The following commit(s) were added to refs/heads/master by this push:
     new ff2f1e9  fix: add truncate and source to newly added blog (#296)
ff2f1e9 is described below

commit ff2f1e9a72d1508bf38768030557a549d831db9e
Author: Kishani Kandasamy <53...@users.noreply.github.com>
AuthorDate: Sat Apr 10 20:00:08 2021 +0530

    fix: add truncate and source to newly added blog (#296)
    
    * update traffic-split-in-ingress-controller.md
    
    * Update website/blog/2021-03-27-traffic-split-in-apache-apisix-ingress-controller.md
    
    Co-authored-by: John Bampton <jb...@users.noreply.github.com>
    
    Co-authored-by: John Bampton <jb...@users.noreply.github.com>
---
 .../2021-03-27-traffic-split-in-apache-apisix-ingress-controller.md | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/website/blog/2021-03-27-traffic-split-in-apache-apisix-ingress-controller.md b/website/blog/2021-03-27-traffic-split-in-apache-apisix-ingress-controller.md
index c22a6a3..8609fb3 100644
--- a/website/blog/2021-03-27-traffic-split-in-apache-apisix-ingress-controller.md
+++ b/website/blog/2021-03-27-traffic-split-in-apache-apisix-ingress-controller.md
@@ -4,7 +4,13 @@ author: "Chao Zhang"
 authorURL: "https://github.com/tokers"
 authorImageURL: "https://avatars.githubusercontent.com/u/10428333?s=460&u=f48ef50c5621a1616a3ede50221547e34270e061&v=4"
 ---
+> [@tokers](https://github.com/tokers), Apache APISIX Committer from [Shenzhen Zhiliu Technology Co.](https://www.apiseven.com/)
+>
 
+<!--truncate-->
+
+> Source: https://www.apiseven.com/en/blog/traffic-split-in-apache-apisix-ingress-controller
+>
 Traffic Split is a feature that splits and deliveries traffic to multiple backend services. Solutions like API Gateway (e.g. [Apache APISIX](http://apisix.apache.org/) and [Traefik](https://traefik.io/)), Service Mesh (e.g. [Istio](https://istio.io/) and [Linkerd](https://linkerd.io/)) are capable of doing traffic splitting and implement functionalities like [Canary Release](https://blog.getambassador.io/cloud-native-patterns-canary-release-1cb8f82d371a) and [Blue-Green Deployment](https [...]
 
 Traffic split is also a key feature in [Ingress Controller](https://kubernetes.io/docs/concepts/services-networking/ingress-controllers/). As the ingress layer in the [Kuberentes](https://kubernetes.io/) cluster, it’s desired to reduce the risk due to release a new version of the application by setting up some traffic split rules in the ingress controller, so only a controllable amount of traffic will be routed to newly released instances. In this article, we’ll introduce the traffic spl [...]