-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Upgrade hcsshim to 0.12.8 and update logic for stale endpoint for hyperv #9505
base: master
Are you sure you want to change the base?
Conversation
1e2c95e
to
e81f324
Compare
/sem-approve |
e81f324
to
96d5ec1
Compare
/sem-approve |
96d5ec1
to
8ac485e
Compare
cali1Rule = netlink.Rule{ | ||
Priority: 100, | ||
Family: unix.AF_INET, | ||
Src: mustParseCIDR("10.0.0.1/32"), | ||
Mark: 0x100, | ||
Mask: 0x100, | ||
Mask: &mask1, |
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.
nit. Non-blocking. We can probably use the k8s ptr helper utility. This line can be ptr.To[uint32](0x100)
.
@@ -75,7 +75,7 @@ require ( | |||
github.com/tchap/go-patricia/v2 v2.3.1 | |||
github.com/termie/go-shutil v0.0.0-20140729215957-bcacb06fecae | |||
github.com/urfave/cli/v2 v2.27.5 | |||
github.com/vishvananda/netlink v1.2.1-beta.2.0.20240703200800-b54f85093f4a | |||
github.com/vishvananda/netlink v1.3.0 |
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.
There is a breaking change in vishvananda/netlink that Mask
is changed from int
to *uint32
(Mark
from int
to uint32
). We may need to validate that in production code to avoid any nil pointer dereference or usage.
…erv isolation Signed-off-by: ritikaguptams <[email protected]> Upgrading hcshim Signed-off-by: ritikaguptams <[email protected]> Fixing tests to update netlink to 1.30 Signed-off-by: ritikaguptams <[email protected]>
8ac485e
to
4d6bd7b
Compare
/sem-approve |
Description
Complete information of this PR is documented here.
Related issues/PRs
Todos
Release Note
Reminder for the reviewer
Make sure that this PR has the correct labels and milestone set.
Every PR needs one
docs-*
label.docs-pr-required
: This change requires a change to the documentation that has not been completed yet.docs-completed
: This change has all necessary documentation completed.docs-not-required
: This change has no user-facing impact and requires no docs.Every PR needs one
release-note-*
label.release-note-required
: This PR has user-facing changes. Most PRs should have this label.release-note-not-required
: This PR has no user-facing changes.Other optional labels:
cherry-pick-candidate
: This PR should be cherry-picked to an earlier release. For bug fixes only.needs-operator-pr
: This PR is related to install and requires a corresponding change to the operator.