Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Commit

Permalink
fix: pjs plugin chains
Browse files Browse the repository at this point in the history
Signed-off-by: Lin Yang <reaver@flomesh.io>
  • Loading branch information
reaver-flomesh committed Jul 4, 2023
1 parent bfe22fe commit e4cd49f
Show file tree
Hide file tree
Showing 8 changed files with 172 additions and 443 deletions.
Binary file modified charts/fsm/components/scripts.tar.gz
Binary file not shown.
84 changes: 55 additions & 29 deletions charts/fsm/components/scripts/gateways/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,38 +10,64 @@
"Services": {},

"Chains": {
"inbound-http": [
"modules/inbound-tls-termination.js",
"modules/inbound-http-routing.js",
"plugins/inbound-http-default-routing.js",
"modules/inbound-metrics-http.js",
"modules/inbound-tracing-http.js",
"modules/inbound-logging-http.js",
"modules/inbound-throttle-service.js",
"modules/inbound-throttle-route.js",
"modules/inbound-http-load-balancing.js",
"modules/inbound-http-default.js"
"HTTPRoute": [
"common/access-control.js",
"common/ratelimit.js",
"common/consumer.js",
"http/codec.js",
"http/auth.js",
"http/route.js",
"http/service.js",
"http/metrics.js",
"http/tracing.js",
"http/logging.js",
"http/circuit-breaker.js",
"http/throttle-domain.js",
"http/throttle-route.js",
"filter/request-redirect.js",
"filter/header-modifier.js",
"filter/url-rewrite.js",
"http/forward.js",
"http/default.js"
],
"inbound-tcp": [
"modules/inbound-tls-termination.js",
"modules/inbound-tcp-routing.js",
"modules/inbound-tcp-load-balancing.js",
"modules/inbound-tcp-default.js"
"HTTPSRoute": [
"common/access-control.js",
"common/ratelimit.js",
"common/tls-termination.js",
"common/consumer.js",
"http/codec.js",
"http/auth.js",
"http/route.js",
"http/service.js",
"http/metrics.js",
"http/tracing.js",
"http/logging.js",
"http/circuit-breaker.js",
"http/throttle-domain.js",
"http/throttle-route.js",
"filter/request-redirect.js",
"filter/header-modifier.js",
"filter/url-rewrite.js",
"http/forward.js",
"http/default.js"
],
"outbound-http": [
"modules/outbound-http-routing.js",
"plugins/outbound-http-default-routing.js",
"modules/outbound-metrics-http.js",
"modules/outbound-tracing-http.js",
"modules/outbound-logging-http.js",
"modules/outbound-circuit-breaker.js",
"modules/outbound-http-load-balancing.js",
"modules/outbound-http-default.js"
"TLSPassthrough": [
"common/access-control.js",
"common/ratelimit.js",
"tls/passthrough.js",
"common/consumer.js"
],
"outbound-tcp": [
"modules/outbound-tcp-routing.js",
"modules/outbound-tcp-load-balancing.js",
"modules/outbound-tcp-default.js"
"TLSTerminate": [
"common/access-control.js",
"common/ratelimit.js",
"common/tls-termination.js",
"common/consumer.js",
"tls/forward.js"
],
"TCPRoute": [
"common/access-control.js",
"common/ratelimit.js",
"tcp/forward.js"
]
},

Expand Down
2 changes: 1 addition & 1 deletion deploy/fsm-dev.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion deploy/fsm.yaml

Large diffs are not rendered by default.

Loading

0 comments on commit e4cd49f

Please sign in to comment.