You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by ju...@apache.org on 2022/12/07 01:43:36 UTC

[apisix] branch docs/tutorial-websocket-authentication updated (e7d6b3a8d -> 8c2513904)

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

juzhiyuan pushed a change to branch docs/tutorial-websocket-authentication
in repository https://gitbox.apache.org/repos/asf/apisix.git


    from e7d6b3a8d docs: added tips
     add ba22a4325 change: rename kms to secret (#8448)
     add edb8edfd4 feat(prometheus): support collect metrics works in the priviledged agent (#8434)
     add 1da09bf44 docs: add Configure mTLS for client to APISIX (EN) (#8460)
     add 8c2513904 Merge branch 'master' into docs/tutorial-websocket-authentication

No new revisions were added by this update.

Summary of changes:
 .github/workflows/build.yml                        |   4 +-
 .github/workflows/centos7-ci.yml                   |   4 +-
 Makefile                                           |   4 +-
 apisix/admin/init.lua                              |   2 +-
 apisix/admin/{kms.lua => secrets.lua}              |  34 ++---
 apisix/cli/ngx_tpl.lua                             |  22 +++-
 apisix/constants.lua                               |   2 +-
 apisix/consumer.lua                                |   4 +-
 apisix/init.lua                                    |   4 +-
 apisix/{kms.lua => secret.lua}                     |  96 +++++++--------
 apisix/{kms => secret}/vault.lua                   |   0
 docs/assets/images/kms.png                         | Bin 125602 -> 0 bytes
 docs/assets/images/secret.png                      | Bin 0 -> 81803 bytes
 docs/en/latest/admin-api.md                        |  16 +--
 docs/en/latest/config.json                         |   3 +-
 docs/en/latest/mtls.md                             |   2 +
 docs/en/latest/plugins/prometheus.md               |   9 ++
 docs/en/latest/terminology/{kms.md => secret.md}   |  32 ++---
 .../latest/tutorials/client-to-apisix-mtls.md      |  90 +++++++-------
 docs/zh/latest/config.json                         |   2 +-
 docs/zh/latest/plugins/prometheus.md               |   9 ++
 docs/zh/latest/terminology/{kms.md => secret.md}   |  32 ++---
 t/admin/{kms.t => secrets.t}                       |  28 ++---
 t/cli/test_prometheus.sh                           |   2 +
 t/cli/test_prometheus_run_in_privileged.sh         | 111 +++++++++++++++++
 t/config-center-yaml/{kms.t => secret.t}           | 137 +++++++++------------
 .../apisix/plugins/prometheus/exporter.lua}        |  27 ++--
 t/plugin/key-auth.t                                |   8 +-
 t/{kms => secret}/vault.t                          |  10 +-
 29 files changed, 409 insertions(+), 285 deletions(-)
 rename apisix/admin/{kms.lua => secrets.lua} (82%)
 rename apisix/{kms.lua => secret.lua} (61%)
 rename apisix/{kms => secret}/vault.lua (100%)
 delete mode 100644 docs/assets/images/kms.png
 create mode 100644 docs/assets/images/secret.png
 rename docs/en/latest/terminology/{kms.md => secret.md} (77%)
 copy docs/{zh => en}/latest/tutorials/client-to-apisix-mtls.md (50%)
 rename docs/zh/latest/terminology/{kms.md => secret.md} (74%)
 rename t/admin/{kms.t => secrets.t} (85%)
 create mode 100755 t/cli/test_prometheus_run_in_privileged.sh
 rename t/config-center-yaml/{kms.t => secret.t} (66%)
 copy t/{fake-plugin-exit.lua => lib/apisix/plugins/prometheus/exporter.lua} (75%)
 rename t/{kms => secret}/vault.t (92%)