-
Notifications
You must be signed in to change notification settings - Fork 831
api: relax Headers validation #9681
New issue
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1545,7 +1545,7 @@ spec: | |
| required: | ||
| - name | ||
| type: object | ||
| maxItems: 64 | ||
| maxItems: 128 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Changing this CRD template means Useful? React with 👍 / 👎. |
||
| type: array | ||
| methods: | ||
| description: |- | ||
|
|
@@ -1956,7 +1956,7 @@ spec: | |
| required: | ||
| - name | ||
| type: object | ||
| maxItems: 64 | ||
| maxItems: 128 | ||
| type: array | ||
| methods: | ||
| description: |- | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This relaxes an existing CRD validation for
RateLimitSelectCondition.headers, which is a user-visible API behavior change; this repo records such changes as per-change fragments underrelease-notes/current/<section>/, but this commit does not add one. Please add a fragment (likely underbug_fixes/orother_changes/, depending on the intended classification) so the next release notes mention that policies with 65-128 header matches are now accepted.Useful? React with 👍 / 👎.