This is an automated email from the ASF dual-hosted git repository.
ronething pushed a change to branch feat/enable-websocket
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git
from f4021353 feat: support websocket annotations for ingress
add e3c2f816 chore(e2e-test): optimize the startup speed of
OpenResty/Nginx (#2617)
add d6cf0eaa feat: support redirect for ingress annotations (#2619)
add 6b708576 feat: support cors annotations for ingress (#2618)
add 8823f2ff Merge remote-tracking branch 'origin/master' into
feat/enable-websocket
No new revisions were added by this update.
Summary of changes:
Makefile | 2 +
internal/adc/translator/annotations.go | 5 +-
.../{websocket/websocket.go => plugins/cors.go} | 27 +++-
.../translator/annotations/plugins/cors_test.go | 48 ++++++
.../adc/translator/annotations/plugins/plugins.go | 66 +++++++++
.../adc/translator/annotations/plugins/redirect.go | 55 +++++++
internal/adc/translator/annotations_test.go | 47 ++++++
internal/adc/translator/ingress.go | 6 +-
internal/webhook/v1/ingress_webhook.go | 7 -
internal/webhook/v1/ingress_webhook_test.go | 25 ----
test/e2e/ingress/annotations.go | 162 +++++++++++++++++++++
test/e2e/webhook/ingress.go | 69 ---------
12 files changed, 410 insertions(+), 109 deletions(-)
copy internal/adc/translator/annotations/{websocket/websocket.go =>
plugins/cors.go} (54%)
create mode 100644 internal/adc/translator/annotations/plugins/cors_test.go
create mode 100644 internal/adc/translator/annotations/plugins/plugins.go
create mode 100644 internal/adc/translator/annotations/plugins/redirect.go