-
Notifications
You must be signed in to change notification settings - Fork 781
fix: rename listener using its protocol and port #6544
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
Merged
Changes from 33 commits
Commits
Show all changes
53 commits
Select commit
Hold shift + click to select a range
373cc8b
rename listener using its address and port
zhaohuabing b5ebedf
rename udp listener using its address and port
zhaohuabing 0cd2b1e
fix e2e
zhaohuabing 67ca839
add metadata to listener
zhaohuabing 4f03942
fix e2e
zhaohuabing d893f92
fix test
zhaohuabing 729ddd1
fix test
zhaohuabing 7febe3c
fix test
zhaohuabing 70004c4
add feature flag for listener name
zhaohuabing 20f9cb4
remove metadata for tcp and udp listeners
zhaohuabing 497cedc
fix int
zhaohuabing 5996876
release notes
zhaohuabing 117a25f
update api
zhaohuabing 786dae7
add validation
zhaohuabing 4965c41
Merge remote-tracking branch 'origin/main' into fix-6534
zhaohuabing 372c87c
add protocol prefix to listener name
zhaohuabing 3db9b6a
Merge remote-tracking branch 'origin/main' into fix-6534
zhaohuabing b255a41
Merge remote-tracking branch 'origin/main' into fix-6534
zhaohuabing dbc25f5
rename listener using protocol and port
zhaohuabing 22433e5
Merge remote-tracking branch 'origin/main' into fix-6534
zhaohuabing 5863891
rename tests
zhaohuabing 97577a6
add host suffix to filterChain name
zhaohuabing 86145d3
fix test
zhaohuabing 5ca080c
fix e2e
zhaohuabing fe945d4
modify listener stat prefix
zhaohuabing c01ee3d
rename routeconfig
zhaohuabing 172fff2
fix e2e
zhaohuabing ea805e6
fix gen
zhaohuabing 0e48149
Merge remote-tracking branch 'origin/main' into fix-6534
zhaohuabing 2cdc332
fix gen
zhaohuabing 6040211
fix e2e
zhaohuabing dcef7d1
minor change
zhaohuabing 4cdaff6
remove duplicated virtual hosts in RouteConfig
zhaohuabing 11249c8
minor change
zhaohuabing 14d865c
split route config on different hosts for HTTPS listeners
zhaohuabing e593461
Merge remote-tracking branch 'origin/main' into fix-6534
zhaohuabing e7fc940
remove listener metadata
zhaohuabing 8de0377
remove listener metadata
zhaohuabing 7312157
remove external port
zhaohuabing 4c7e56e
remove listener metadata
zhaohuabing 74ba442
remove unnecessary change
zhaohuabing 49cb214
remove unnecessary change
zhaohuabing 4073bfa
update test file
zhaohuabing efc13f7
set listener and filter chain names, rollback other names
zhaohuabing c96448e
Merge remote-tracking branch 'origin/main' into fix-6534
zhaohuabing 68f941f
fix gen
zhaohuabing 3d15136
Merge remote-tracking branch 'origin/main' into fix-6534
zhaohuabing 287e50e
minor change
zhaohuabing 7928d48
remove unnecessary change
zhaohuabing d95f35d
update the default filter chain name
zhaohuabing a9406bb
address comment
zhaohuabing 523588c
fix gen
zhaohuabing e08d884
Merge branch 'main' into fix-6534
zirain File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -102,6 +102,7 @@ xdsIR: | |
| type: HTTP | ||
| http: | ||
| - address: 0.0.0.0 | ||
| externalPort: 80 | ||
| hostnames: | ||
| - '*' | ||
| isHTTP2: false | ||
|
|
||
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
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
All the conformance tests and e2e tests have passed for the new naming scheme in both IPV4 and IPv6.
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 will increase CI, can we reuse an existing matrix val
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.
Ipv6 can be removed, but we should at least run all the test cases for the new name scheme once to make sure we don't break anything. These are temporary and can be removed after the runtime flag is removed.
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.
sure, in the future we can create a mixed profile, in a follow up