docs: added more info for stateful_session filter params (#37345)

Signed-off-by: Rohit Agrawal <rohit.agrawal@databricks.com>

Mirrored from https://github.com/envoyproxy/envoy @ 416524cc4fbd20fe41245abf51f6f886149a290d
main
update-envoy[bot] 3 months ago
parent d4c5b3fe72
commit e38444216a
  1. 10
      envoy/extensions/filters/http/stateful_session/v3/stateful_session.proto

@ -18,14 +18,16 @@ option (udpa.annotations.file_status).package_version_status = ACTIVE;
// [#extension: envoy.filters.http.stateful_session]
message StatefulSession {
// Specific implementation of session state. This session state will be used to store and
// get address of the upstream host to which the session is assigned.
// Specifies the implementation of session state. This session state is used to store and retrieve the address of the
// upstream host assigned to the session.
//
// [#extension-category: envoy.http.stateful_session]
config.core.v3.TypedExtensionConfig session_state = 1;
// If set to True, the HTTP request must be routed to the requested destination.
// If the requested destination is not available, Envoy returns 503. Defaults to False.
// Determines whether the HTTP request must be strictly routed to the requested destination. When set to ``true``,
// if the requested destination is unavailable, Envoy will return a 503 status code. The default value is ``false``,
// which allows Envoy to fall back to its load balancing mechanism. In this case, if the requested destination is not
// found, the request will be routed according to the load balancing algorithm.
bool strict = 2;
}

Loading…
Cancel
Save