You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
KongRoute's spec.headers field was initially defined as map[string]string while the real type expected by the Konnect API is map[string][]string. The goal of this issue is to allow setting multiple values of the same header.
Proposed Solution
As the API is already public, we should not break the schema. Because of that, adding a new headerValues (name to be discussed) field is proposed, deprecating the old headers at the same time.
Acceptance Criteria
It is possible to set multiple values for a single header key in the KongRoute's spec
The text was updated successfully, but these errors were encountered:
Problem Statement
KongRoute's
spec.headers
field was initially defined asmap[string]string
while the real type expected by the Konnect API ismap[string][]string
. The goal of this issue is to allow setting multiple values of the same header.Proposed Solution
As the API is already public, we should not break the schema. Because of that, adding a new
headerValues
(name to be discussed) field is proposed, deprecating the oldheaders
at the same time.Acceptance Criteria
KongRoute
'sspec
The text was updated successfully, but these errors were encountered: