-
Notifications
You must be signed in to change notification settings - Fork 38
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
Use tags.cncf.io URL in module names #172
Conversation
@@ -48,7 +48,7 @@ | |||
// | |||
// log "github.com/sirupsen/logrus" | |||
// | |||
// "github.com/container-orchestrated-devices/container-device-interface/pkg/cdi" | |||
// "tags.cncf.io/container-device-interface/pkg/cdi" |
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.
nitpick: I would also do on line 5 an 's:/container-orchestrated-devices/:/cncf-tags/'
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.
Done.
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.
Although this is not strictly necessary from the code point of view, for consistency I would also consider updating these remaining old '/container-orchestrated-devices/' repo references to the new '/cncf-tags/' one, while we're at it. @elezar WDYT ?
klitkey1-mobl1 container-device-interface $ git grep -n container-orchestrated-devices
README.md:3:**NOTE:** The API for injecting CDI devices that existed at `github.com/container-orchestrated-devices/container-device-interface/pkg` has been removed. Users of this API should migrate to the one at `github.com/container-orchestrated-devices/container-device-interface/pkg/cdi` as this is actively maintained.
README.md:191:* Please let us know by [filing a new issue](https://github.com/container-orchestrated-devices/container-device-interface/issues/new)
pkg/cdi/doc.go:5:// https://github.com/container-orchestrated-devices/container-device-interface
/cc @bart0sh |
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.
@elezar Sorry, I don't want to be a PITA, but I still see two references of the old repo. Is this intentional:
klitkey1-mobl1 container-device-interface $ git grep -n container-orchestrated-devices
README.md:3:**NOTE:** The API for injecting CDI devices that existed at `github.com/container-orchestrated-devices/container-device-interface/pkg` has been removed. Users of this API should migrate to the one at `tags.cncf.io/container-device-interface/pkg/cdi` as this is actively maintained.
README.md:191:* Please let us know by [filing a new issue](https://github.com/container-orchestrated-devices/container-device-interface/issues/new)
Signed-off-by: Evan Lezar <elezar@nvidia.com>
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
With cncf/toc#1152 addressed, we are able to use the
tags.cncf.io
vanity URL in our module names.