-
Notifications
You must be signed in to change notification settings - Fork 3k
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
bgpv2: use peer asn and address in the key #33263
Merged
julianwiedmann
merged 1 commit into
cilium:main
from
harsimran-pabla:hpabla/bgp/v2/33163_v2
Jun 20, 2024
Merged
bgpv2: use peer asn and address in the key #33263
julianwiedmann
merged 1 commit into
cilium:main
from
harsimran-pabla:hpabla/bgp/v2/33163_v2
Jun 20, 2024
Conversation
This file contains 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
maintainer-s-little-helper
bot
added
the
dont-merge/needs-release-note-label
The author needs to describe the release impact of these changes.
label
Jun 19, 2024
harsimran-pabla
added
the
release-note/misc
This PR makes changes that have no direct user impact.
label
Jun 19, 2024
maintainer-s-little-helper
bot
removed
the
dont-merge/needs-release-note-label
The author needs to describe the release impact of these changes.
label
Jun 19, 2024
harsimran-pabla
added
dont-merge/needs-release-note-label
The author needs to describe the release impact of these changes.
area/bgp
labels
Jun 19, 2024
maintainer-s-little-helper
bot
removed
the
dont-merge/needs-release-note-label
The author needs to describe the release impact of these changes.
label
Jun 19, 2024
/test |
harsimran-pabla
added
release-note/bug
This PR fixes an issue in a previous release of Cilium.
release-blocker/1.16
This issue will prevent the release of the next version of Cilium.
and removed
release-note/misc
This PR makes changes that have no direct user impact.
labels
Jun 19, 2024
rastislavs
approved these changes
Jun 19, 2024
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 🚀
On updating peer ASN and address, we need to remove old peer and readd it again. This change adds ASN and address in the key of peer along with the name. Secondly, order of changing peer is now delete, update and add. This is done because adding before deleting old peer is going to fail when changing ASN. This change also allows setting local peer port to 0 (random port selection from kernel) Signed-off-by: harsimran pabla <[email protected]>
harsimran-pabla
force-pushed
the
hpabla/bgp/v2/33163_v2
branch
from
June 19, 2024 19:49
192e50a
to
a8da066
Compare
/test |
1 similar comment
/test |
maintainer-s-little-helper
bot
added
the
ready-to-merge
This PR has passed all tests and received consensus from code owners to merge.
label
Jun 19, 2024
joestringer
added
the
backport-done/1.16
The backport for Cilium 1.16.x for this PR is done.
label
Jun 28, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area/bgp
backport-done/1.16
The backport for Cilium 1.16.x for this PR is done.
ready-to-merge
This PR has passed all tests and received consensus from code owners to merge.
release-blocker/1.16
This issue will prevent the release of the next version of Cilium.
release-note/bug
This PR fixes an issue in a previous release of 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.
This change adds the ASN and address to the peer's key along with the name.
Secondly, the order of peer changes is now deleted, updated, and added. This is done because adding an old peer before deleting it will fail when changing the peer ASN or address.
This change also allows setting the local peer port to 0 (random port selection from the kernel). This is required when setting the local port from some value back to 0.
Fixes: #33163