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

[NRI] Containerd 2.0 passes "v2" as the runtime name instead of "containerd" #11485

Closed
rogowski-piotr opened this issue Mar 5, 2025 · 2 comments
Labels
area/nri Node Resource Interface (NRI) kind/bug

Comments

@rogowski-piotr
Copy link

Description

After upgrading to containerd 2.0, the runtime name provided to NRI plugins and potentially other components is now "v2" instead of "containerd".

In containerd 1.7, the name variable was derived from:
source

import (
	"path"
	"github.com/containerd/containerd/version"
)

var name = path.Base(version.Package)  // name == "containerd"

With containerd 2.0:
source

import (
	"path"
	"github.com/containerd/containerd/v2/version"
)

var name = path.Base(version.Package)  // name == "v2"

This leads to "v2" being used as the runtime name instead of "containerd".

Breaking changes commit

Steps to reproduce the issue

  1. Use containerd 2.0
  2. Implement an NRI plugin with the following Configure() method example
  3. Print value of runtime variable:
func (p *plugin) Configure(_ context.Context, config, runtime, version string) (stub.EventMask, error) {
    fmt.Printf("Runtime name: %s\n", runtime) // <-- should be "containerd" instead of "v2"
...
}

Describe the results you received and expected

Expected:

  • The runtime name passed to components like NRI should be "containerd".

Received:

  • The runtime name is now "v2".

What version of containerd are you using?

v2.0.2

Any other relevant information

No response

Show configuration if it is related to CRI plugin.

No response

@dosubot dosubot bot added the area/nri Node Resource Interface (NRI) label Mar 5, 2025
@AkihiroSuda AkihiroSuda changed the title Containerd 2.0 passes "v2" as the runtime name instead of "containerd" [NRI] Containerd 2.0 passes "v2" as the runtime name instead of "containerd" Mar 6, 2025
@ningmingxiao
Copy link
Contributor

#11518 will fix.

@rogowski-piotr
Copy link
Author

Thanks! It helps #11518

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/nri Node Resource Interface (NRI) kind/bug
Projects
Status: Done
Development

No branches or pull requests

2 participants