-
Notifications
You must be signed in to change notification settings - Fork 3.4k
hubble: remove deprecated experimental fieldmask #40245
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
Merged
kaworu
merged 3 commits into
cilium:main
from
kaworu:pr/kaworu/hubble/remove-exp-fieldmask
Aug 20, 2025
Merged
hubble: remove deprecated experimental fieldmask #40245
kaworu
merged 3 commits into
cilium:main
from
kaworu:pr/kaworu/hubble/remove-exp-fieldmask
Aug 20, 2025
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
02e9576 to
8a24d9e
Compare
kaworu
commented
Jun 27, 2025
michi-covalent
approved these changes
Jun 27, 2025
Contributor
michi-covalent
left a comment
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.
proto file change looks good ✅
8a24d9e to
42d6dcc
Compare
glrf
approved these changes
Jul 9, 2025
42d6dcc to
911a54f
Compare
159eeb5 to
697daaa
Compare
rolinh
approved these changes
Jul 30, 2025
Member
rolinh
left a comment
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.
lgtm
qmonnet
approved these changes
Jul 30, 2025
697daaa to
f3ee211
Compare
Member
Author
|
/test |
Member
Author
|
Restarting |
devodev
approved these changes
Aug 11, 2025
f3ee211 to
ceeb4c1
Compare
Member
Author
|
/test |
ceeb4c1 to
426c430
Compare
Contributor
|
/test |
Hubble clients can request a subset of flow fields through FieldMask, allowing some control over the bandwidth used by the response. Since cilium#30133 FieldMask has been promoted to stable, and its experimental option has been deprecated. This commit remove the experimental FieldMask option. Signed-off-by: Alexandre Perrin <alex@isovalent.com>
Also rename the related --experimental-use-default-field-masks flag to to --use-default-field-masks. Since GetFlowsRequest.field_mask is now stable, stabilize the Hubble CLI related flags. Signed-off-by: Alexandre Perrin <alex@isovalent.com>
Signed-off-by: Alexandre Perrin <alex@isovalent.com>
426c430 to
18de923
Compare
Member
Author
|
/test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area/hubble
Impacts hubble server or relay
hubble-cli
PRs or GitHub issues related with hubble-cli
kind/cleanup
This includes no functional changes.
kind/enhancement
This would improve or streamline existing functionality.
release-note/minor
This PR changes functionality that users may find relevant to operating Cilium.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Promote the CLI fieldmask related flags to stable on the way, and make
--use-default-field-masksthe default. To be merged after v1.18 so we have some time to test the--use-default-field-maskschange.Still TODO: update upgrade.rst to document the CLI and API changes.Closes #40235