We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description:
Describe the issue.
The current API for setting cookie attributes in the consistent hashing configuration is a map[string]string
map[string]string
gateway/api/v1alpha1/loadbalancer_types.go
Line 112 in 5d3df77
The RFC https://datatracker.ietf.org/doc/html/rfc6265#section-4.1.1 as well as Envoy Proxy https://www.envoyproxy.io/docs/envoy/latest/api-v3/config/route/v3/route_components.proto#config-route-v3-routeaction-hashpolicy-cookieattribute support an optional value , which is seen in well known attributes such as Secure and HttpOnly https://datatracker.ietf.org/doc/html/rfc6265#section-5.2.6
value
Secure
HttpOnly
There are a few ways to address this issue
attributesList
or
attributes
Relates to https://envoyproxy.slack.com/archives/C03E6NHLESV/p1730397571965609
The text was updated successfully, but these errors were encountered:
ptal @envoyproxy/gateway-maintainers
Sorry, something went wrong.
No branches or pull requests
Description:
The current API for setting cookie attributes in the consistent hashing configuration is a
map[string]string
gateway/api/v1alpha1/loadbalancer_types.go
Line 112 in 5d3df77
The RFC https://datatracker.ietf.org/doc/html/rfc6265#section-4.1.1 as well as Envoy Proxy https://www.envoyproxy.io/docs/envoy/latest/api-v3/config/route/v3/route_components.proto#config-route-v3-routeaction-hashpolicy-cookieattribute support an optional
value
, which is seen in well known attributes such asSecure
andHttpOnly
https://datatracker.ietf.org/doc/html/rfc6265#section-5.2.6
There are a few ways to address this issue
attributesList
that supports optional valuesor
Secure
andHttpOnly
or
attributes
field to support optional valuesRelates to https://envoyproxy.slack.com/archives/C03E6NHLESV/p1730397571965609
The text was updated successfully, but these errors were encountered: