Skip to content
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

Rdma subsytem mode #799

Merged
merged 2 commits into from
Nov 11, 2024
Merged

Conversation

SchSeba
Copy link
Collaborator

@SchSeba SchSeba commented Oct 28, 2024

No description provided.

Copy link

Thanks for your PR,
To run vendors CIs, Maintainers can use one of:

  • /test-all: To run all tests for all vendors.
  • /test-e2e-all: To run all E2E tests for all vendors.
  • /test-e2e-nvidia-all: To run all E2E tests for NVIDIA vendor.

To skip the vendors CIs, Maintainers can use one of:

  • /skip-all: To skip all tests for all vendors.
  • /skip-e2e-all: To skip all E2E tests for all vendors.
  • /skip-e2e-nvidia-all: To skip all E2E tests for NVIDIA vendor.
    Best regards.

@SchSeba SchSeba force-pushed the rdma-subsytem-mode branch 2 times, most recently from 511c308 to 4e22619 Compare October 29, 2024 09:49
@coveralls
Copy link

coveralls commented Oct 29, 2024

Pull Request Test Coverage Report for Build 11723997336

Details

  • 158 of 293 (53.92%) changed or added relevant lines in 12 files are covered.
  • 3 unchanged lines in 2 files lost coverage.
  • Overall coverage increased (+0.2%) to 45.623%

Changes Missing Coverage Covered Lines Changed/Added Lines %
pkg/daemon/daemon.go 0 3 0.0%
pkg/host/internal/lib/netlink/netlink.go 0 3 0.0%
pkg/daemon/writer.go 0 7 0.0%
api/v1/zz_generated.deepcopy.go 2 12 16.67%
pkg/helper/mock/mock_helper.go 10 21 47.62%
controllers/sriovnetworknodepolicy_controller.go 0 12 0.0%
pkg/host/internal/network/network.go 19 31 61.29%
pkg/host/mock/mock_host.go 0 21 0.0%
controllers/helper.go 50 74 67.57%
pkg/plugins/generic/generic_plugin.go 65 97 67.01%
Files with Coverage Reduction New Missed Lines %
pkg/daemon/daemon.go 1 44.58%
pkg/plugins/generic/generic_plugin.go 2 64.86%
Totals Coverage Status
Change from base Build 11613650922: 0.2%
Covered Lines: 6880
Relevant Lines: 15080

💛 - Coveralls

Copy link

Thanks for your PR,
To run vendors CIs, Maintainers can use one of:

  • /test-all: To run all tests for all vendors.
  • /test-e2e-all: To run all E2E tests for all vendors.
  • /test-e2e-nvidia-all: To run all E2E tests for NVIDIA vendor.

To skip the vendors CIs, Maintainers can use one of:

  • /skip-all: To skip all tests for all vendors.
  • /skip-e2e-all: To skip all E2E tests for all vendors.
  • /skip-e2e-nvidia-all: To skip all E2E tests for NVIDIA vendor.
    Best regards.

@SchSeba SchSeba force-pushed the rdma-subsytem-mode branch 4 times, most recently from fdaf09f to 0179a03 Compare October 30, 2024 19:42
e0ne
e0ne previously approved these changes Oct 30, 2024
Copy link
Collaborator

@e0ne e0ne left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tested with OCP 4.16 and Ubuntu 22.04

Copy link
Member

@zeeke zeeke left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did a first round of review. Overall approach looks good, though the GenericPlugin is starting to become a little complicated

@@ -264,84 +273,83 @@ func needDriverCheckVdpaType(state *sriovnetworkv1.SriovNetworkNodeState, driver
}

// setKernelArg Tries to add the kernel args via ostree or grubby.
func setKernelArg(karg string) (bool, error) {
func setKernelArg(helper helper.HostHelpersInterface, mode, karg string) error {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you rename this to editKernelArg?

@@ -264,84 +273,83 @@ func needDriverCheckVdpaType(state *sriovnetworkv1.SriovNetworkNodeState, driver
}

// setKernelArg Tries to add the kernel args via ostree or grubby.
func setKernelArg(karg string) (bool, error) {
func setKernelArg(helper helper.HostHelpersInterface, mode, karg string) error {
log.Log.Info("generic plugin setKernelArg()")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not strictly related to this PR, but it would be useful to log the kernel argument we are trying to add:

log.Log.Info("generic plugin setKernelArg()", "karg", karg)


// getKernelArgs gets Kernel arguments on the running sy.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

doc string is probably a leftover

WaitForSRIOVStable()
})

It("should run pod with RDMA cni and not expose nic metrics", func() {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

isn't this supposed to be "without RDMA cni"?

then
# Caller is trying to read kernel arguments.
cat /proc/cmdline
fi
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: end file with an empty line

@SchSeba
Copy link
Collaborator Author

SchSeba commented Oct 31, 2024

about

Did a first round of review. Overall approach looks good, though the GenericPlugin is starting to become a little complicated

you are right I think we probably can add a kernel/host/driver plugin or something like that will only handle that part and leave the generic one with only creating VFs

I can try to work on that for a following PR

@SchSeba SchSeba force-pushed the rdma-subsytem-mode branch 3 times, most recently from 0d4394a to 4be4279 Compare November 3, 2024 09:20
@e0ne e0ne dismissed their stale review November 5, 2024 10:27

need to review the latest changeset

Copy link
Collaborator

@e0ne e0ne left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for adding tests!

Signed-off-by: Sebastian Sch <sebassch@gmail.com>
Copy link
Member

@zeeke zeeke left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Thanks for addressing my comments

@SchSeba SchSeba merged commit 92fee7b into k8snetworkplumbingwg:master Nov 11, 2024
14 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants