You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by zh...@apache.org on 2021/09/24 09:55:16 UTC

[apisix-ingress-controller] branch master updated (3e9bdbf -> 1b71fa3)

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

zhangjintao pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git.


    from 3e9bdbf  fix: the fields in UpstreamPassiveHealthCheckUnhealthy should be timeouts (#687)
     add 1b71fa3  feat: support cert-manager (#685)

No new revisions were added by this update.

Summary of changes:
 docs/en/latest/practices/cert-manager/ca.yaml      |  23 ++
 .../{mtls/tls.yaml => cert-manager/issuer.yaml}    |  14 +-
 .../manage-certificates-with-cert-manager.md       | 241 +++++++++++++++++++++
 ...anage-ingress-certificates-with-cert-manager.md | 195 +++++++++++++++++
 pkg/ingress/controller.go                          |   2 +
 pkg/ingress/secret.go                              |  57 ++---
 pkg/kube/translation/apisix_ssl.go                 |  63 +++++-
 pkg/kube/translation/translator.go                 |   3 +
 test/e2e/ingress/ingress.go                        |  54 +++++
 test/e2e/ingress/secret.go                         | 233 ++++++++++++++++++++
 test/e2e/scaffold/ssl.go                           |  20 ++
 11 files changed, 859 insertions(+), 46 deletions(-)
 create mode 100644 docs/en/latest/practices/cert-manager/ca.yaml
 copy docs/en/latest/practices/{mtls/tls.yaml => cert-manager/issuer.yaml} (83%)
 create mode 100644 docs/en/latest/practices/manage-certificates-with-cert-manager.md
 create mode 100644 docs/en/latest/practices/manage-ingress-certificates-with-cert-manager.md