You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by me...@apache.org on 2020/01/14 13:44:39 UTC

[incubator-apisix] branch master updated: doc: update plugin list and power by companies. (#1054)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 361b933  doc: update plugin list and power by companies. (#1054)
361b933 is described below

commit 361b933d6b17186eb1f6036ccb5f53facd568ce2
Author: WenMing <mo...@gmail.com>
AuthorDate: Tue Jan 14 21:44:29 2020 +0800

    doc: update plugin list and power by companies. (#1054)
---
 README.md         | 3 ++-
 README_CN.md      | 3 ++-
 doc/README.md     | 3 ++-
 doc/README_CN.md  | 3 +++
 doc/powered-by.md | 3 ++-
 5 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index 932402b..b3ca3ad 100644
--- a/README.md
+++ b/README.md
@@ -82,7 +82,7 @@ A/B testing, canary release, blue-green deployment, limit rate, defense against
     - [Support priority](doc/router-radixtree.md#3-match-priority)
 
 - **Security**
-    - Authentications: [key-auth](doc/plugins/key-auth.md), [JWT](doc/plugins/jwt-auth.md)
+    - Authentications: [key-auth](doc/plugins/key-auth.md), [JWT](doc/plugins/jwt-auth.md), [basic-auth](doc/plugins/basic-auth.md)
     - [IP Whitelist/Blacklist](doc/plugins/ip-restriction.md)
     - [IdP](doc/plugins/oauth.md): Support external authentication services, such as Auth0, okta, etc., users can use this to connect to Oauth2.0 and other authentication methods.
     - [Limit-req](doc/plugins/limit-req.md)
@@ -101,6 +101,7 @@ A/B testing, canary release, blue-green deployment, limit rate, defense against
     - Global Rule: Allows to run any plugin for all request, eg: limit rate, IP filter etc.
     - High performance: The single-core QPS reaches 18k with an average delay of less than 0.2 milliseconds.
     - [REST admin API](doc/admin-api.md)
+    - fault injection
 
 - **Highly scalable**
     - [Custom plugins]((doc/plugin-develop.md)): Allows hooking of common phases, such as `rewrite`, `access`, `header filer`, `body filter` and `log`, also allows to hook the `balancer` stage.
diff --git a/README_CN.md b/README_CN.md
index 4b760ae..b9992da 100644
--- a/README_CN.md
+++ b/README_CN.md
@@ -82,7 +82,7 @@ A/B 测试、金丝雀发布(灰度发布)、蓝绿部署、限流限速、抵
     - [支持路由的优先级](doc/router-radixtree.md#3-match-priority)
 
 - **安全防护**
-    - 多种身份认证方式: [key-auth](doc/plugins/key-auth-cn.md), [JWT](doc/plugins/jwt-auth-cn.md)。
+    - 多种身份认证方式: [key-auth](doc/plugins/key-auth-cn.md), [JWT](doc/plugins/jwt-auth-cn.md), [basic-auth](doc/plugins/basic-auth-cn.md)。
     - [IP 黑白名单](doc/plugins/ip-restriction-cn.md)
     - [IdP 支持](doc/plugins/oauth.md): 支持外部的身份认证服务,比如 Auth0,Okta,Authing 等,用户可以借此来对接 Oauth2.0 等认证方式。
     - [限制速率](doc/plugins/limit-req-cn.md)
@@ -101,6 +101,7 @@ A/B 测试、金丝雀发布(灰度发布)、蓝绿部署、限流限速、抵
     - 全局规则:允许对所有请求执行插件,比如黑白名单、限流限速等。
     - 高性能:在单核上 QPS 可以达到 18k,同时延迟只有 0.2 毫秒。
     - [REST admin API](doc/admin-api-cn.md)
+    - 故障注入
 
 - **高度可扩展**
     - [自定义插件](doc/plugin-develop-cn.md): 允许挂载常见阶段,例如`init`, `rewrite`,`access`,`balancer`,`header filer`,`body filter` 和 `log` 阶段。
diff --git a/doc/README.md b/doc/README.md
index d171122..99a3091 100644
--- a/doc/README.md
+++ b/doc/README.md
@@ -42,6 +42,7 @@ Plugins
 * [hot reload](plugins.md): Hot reload without reload service.
 * [key-auth](plugins/key-auth.md): User authentication based on Key Authentication.
 * [JWT-auth](plugins/jwt-auth.md): User authentication based on [JWT](https://jwt.io/) (JSON Web Tokens) Authentication.
+* [basic-auth](doc/plugins/basic-auth.md): User authentication based on Basic Authentication.
 * [HTTPS/TLS](https.md): Dynamic load the SSL Certificate by Server Name Indication (SNI).
 * [limit-count](plugins/limit-count.md): Rate limiting based on a "fixed window" implementation.
 * [limit-req](plugins/limit-req.md): Request rate limiting and adjustment based on the "leaky bucket" method.
@@ -55,7 +56,7 @@ Plugins
 * [openid-connect](plugins/oauth.md)
 * [redirect](plugins/redirect.md): URI redirect.
 * [response-rewrite](plugins/response-rewrite.md): Set customized response status code, body and header to the client.
-
+* fault injection:The specified response body, response code, and response time can be returned, which provides processing capabilities in different failure scenarios, such as service failure, service overload, and high service delay.
 
 Deploy to the Cloud
 =======
diff --git a/doc/README_CN.md b/doc/README_CN.md
index 634d4e6..9e231f1 100644
--- a/doc/README_CN.md
+++ b/doc/README_CN.md
@@ -44,6 +44,7 @@ Reference document
 * [动态负载均衡](architecture-design-cn.md#upstream):跨多个上游服务的动态负载均衡,目前已支持 round-robin 和一致性哈希算法。
 * [key-auth](plugins/key-auth-cn.md):基于 Key Authentication 的用户认证。
 * [JWT-auth](plugins/jwt-auth-cn.md):基于 [JWT](https://jwt.io/) (JSON Web Tokens) Authentication 的用户认证。
+* [basic-auth](doc/plugins/basic-auth-cn.md):基于 basic auth 的用户认证。
 * [limit-count](plugins/limit-count-cn.md):基于“固定窗口”的限速实现。
 * [limit-req](plugins/limit-req-cn.md):基于漏桶原理的请求限速实现。
 * [limit-conn](plugins/limit-conn-cn.md):限制并发请求(或并发连接)。
@@ -55,3 +56,5 @@ Reference document
 * [openid-connect](plugins/oauth.md)
 * [redirect](plugins/redirect-cn.md): URI 重定向。
 * [response-rewrite](plugins/response-rewrite-cn.md): 支持自定义修改返回内容的 `status code`、`body`、`headers`。
+* fault injection:故障注入,可以返回指定的响应体、响应码和响应时间,从而提供了不同的失败场景下处理的能力,例如服务失败、服务过载、服务高延时等。
+
diff --git a/doc/powered-by.md b/doc/powered-by.md
index 18ec8fb..e312290 100644
--- a/doc/powered-by.md
+++ b/doc/powered-by.md
@@ -24,9 +24,11 @@ or providing commercial products including APISIX.
 
 Users are encouraged to add themselves to this page, [issue](https://github.com/apache/incubator-apisix/issues/487) and PR are welcomed.
 
+1. 360 奇虎 https://www.360.cn/
 1. chaolian 超链云商 https://www.chaolian360.com/
 1. cunw 湖南新云网 http://www.cunw.com.cn/
 1. dasouche 大搜车 https://www.dasouche.com/
+1. dataoke 大淘客 https://www.dataoke.com/
 1. ehomepay 理房通 https://www.ehomepay.com.cn/
 1. fansup.mobi https://fansup.mobi/
 1. haieruplus.com 海尔优家  http://haieruplus.com/
@@ -41,7 +43,6 @@ Users are encouraged to add themselves to this page, [issue](https://github.com/
 1. Tencent Cloud 腾讯云 https://cloud.tencent.com/
 1. Xin 优信二手车 https://www.xin.com/
 1. zuzuche 租租车 https://www.zuzuche.com/
-1. Dataoke 大淘客 https://www.dataoke.com/
 
 
 # User Cases