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

feat: Add "Containers" propery in the "nerdctl network inspect" command. #4052

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

tushar5526
Copy link

@tushar5526 tushar5526 commented Mar 28, 2025

Closes #2998

I am creating this MP (tests need to be added) to get an initial quick review on the design. I am also not sure what the output is supposed to be for the --mode native mode.

I'm new to Go and the surrounding ecosystem, so I might be overlooking better ways to implement this.

@apostasie
Copy link
Contributor

Hey @tushar5526

From a first cursory check, it looks good.

Let's have tests, though.

Suggesting you use the new test framework for that (example here: https://github.com/containerd/nerdctl/blob/main/cmd/nerdctl/container/container_inspect_linux_test.go#L521-L549 - and doc here: https://github.com/containerd/nerdctl/blob/main/docs/testing/tools.md).

{
Description: "Verify that only active containers appear in the network inspect output",
Setup: func(data test.Data, helpers test.Helpers) {
helpers.Ensure("network", "create", "nginx-network-1")
Copy link
Contributor

@apostasie apostasie Mar 29, 2025

Choose a reason for hiding this comment

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

nginx-network-1 is not guaranteed to be free and other tests using that same name may collide.

To avoid this, use data.Identifier("nginx-network-1") (or data.Identifier("123") or whatever suits you).

Copy link
Author

Choose a reason for hiding this comment

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

Makes sense, switched to using data.Identifier

Description: "Verify that only active containers appear in the network inspect output",
Setup: func(data test.Data, helpers test.Helpers) {
helpers.Ensure("network", "create", "nginx-network-1")
helpers.Ensure("network", "create", "nginx-network-2")
Copy link
Contributor

Choose a reason for hiding this comment

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

Same - use data.Identifier to get unique identifiers for any resource.

@apostasie
Copy link
Contributor

@tushar5526 can you cherry-pick the commit from this PR and add it to your PR here?

#4055

Would like to see what happens for windows with your test + this commit, that updates to a more recent version of wincni


nativeContainer, err := containerinspector.Inspect(ctx, container)
if err != nil {
return err
Copy link
Contributor

Choose a reason for hiding this comment

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

I would probably continue instead of error out here.

You do not have locking on containers, so, just because it was there above does not mean it is still here, and that should be fine.

Copy link
Author

Choose a reason for hiding this comment

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

Good catch. Thanks!

var containers []*native.Container

for _, container := range filteredContainers {
cStatus, err := containerutil.ContainerStatus(ctx, container)
Copy link
Contributor

Choose a reason for hiding this comment

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

Isn't containerinspector.Inspect (which you call a few lines below) already doing that for you?

Just inspect first, then use nativeContainer.Process.Status to do your check?

Copy link
Author

Choose a reason for hiding this comment

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

Yes, you are correct. It should have been that way. I keep getting confused with two implementations of Container in native and containerd.

Copy link
Contributor

Choose a reason for hiding this comment

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

Me too 😁

@apostasie
Copy link
Contributor

I am creating this MP (tests need to be added) to get an initial quick review on the design. I am also not sure what the output is supposed to be for the --mode native mode.

I am not sure either.
Maybe @AkihiroSuda will have an opinion?

@tushar5526 what about you come up with something that you think makes the most sense? (and the closest to what containerd returns)

@AkihiroSuda
Copy link
Member

--mode=native can be discussed later in another issue/PR

@apostasie
Copy link
Contributor

@tushar5526 can you cherry-pick the commit from this PR and add it to your PR here?

#4055

Would like to see what happens for windows with your test + this commit, that updates to a more recent version of wincni

@tushar5526 #4055 got merged (thanks @AkihiroSuda for the fast merge). You can just rebase against latest main.

@tushar5526 tushar5526 force-pushed the add-containers-to-inspect-output branch from d1ef131 to 048efe7 Compare March 31, 2025 11:50
if err != nil {
continue
}
if nativeContainer.Process.Status.Status != containerd.Running {
Copy link
Contributor

Choose a reason for hiding this comment

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

.Process may be nil - or .Process.Status - so, I guess you need to check for that.

@tushar5526 tushar5526 marked this pull request as draft March 31, 2025 15:20
* move to using data.Identifier to generate unique-keys
* refactor to use "inspect" to fetch the container status

Signed-off-by: Tushar Gupta <[email protected]>
@tushar5526 tushar5526 force-pushed the add-containers-to-inspect-output branch from bbcd9f6 to f7b3a1d Compare April 5, 2025 08:42
@tushar5526 tushar5526 marked this pull request as ready for review April 5, 2025 09:02
@tushar5526
Copy link
Author

@apostasie, is it expected that a bunch of tests will fail?

The errors in them does not seem related to my changes.

@apostasie
Copy link
Contributor

apostasie commented Apr 5, 2025

@apostasie, is it expected that a bunch of tests will fail?

The errors in them does not seem related to my changes.

We do currently have three key flaky offenders. Here are the associated log messages + tickets :

#3513 should hopefully soon get wacked by #4062 - once this is in, I'll look into the buildg one.

Meanwhile, just look for these messages ^ - if you see them in a FAIL: test, you can normally just ignore.

On your last run (at this time), I believe you just met the last two - "Mister buildg is late", and "Mister CNI forgot his conflist somewhere" 😆

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.

nerdctl network inspect does not list containers using the network
3 participants