-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
Vendored library conflicts #2289
Comments
We generally strip vendor from our dependencies and revendor the needed packages in our own project. |
You could have an old An updated |
@williammartin Did updating |
@ehazlett Haven't checked yet but changing our vendoring solution to |
@williammartin that solution would be to remove the subpackage's vendor dirs or else go treats them as separate packages and causes the conflicts. |
@williammartin I wonder if we can type alias the spec into the package to clear up these types of issues package oci
type Spec = specs.Spec |
@crosbymichael Sorry for the delay, I've been out quite a bit. I can't say I'm familiar enough with Go to know whether that will work but it would be great if we didn't have to change anything. We don't want to push any solution that results in a worse experience for anyone else though. I suppose another larger solution might be to split the client library from the runtime so it can be vendored independently but meh, I can understand wanting to keep all of the containerd stuff together. Right now we're just maintaining a fork of containerd with the offending dependency removed but I'm sure we'll have to tackle this at some point. |
This allows Go to build third party packages correctly without vendoring issues what want to create their own SpecOpts. Fixes containerd#2289 Signed-off-by: Michael Crosby <[email protected]>
Hey all,
As you know, we're starting to look at consuming
containerd
in Garden, instead of talking torunc
directly, but we're running up against some problems, and I was hoping to start a discussion around this.Up to now in Garden, we've happily been building our own
specs.Spec
from theruntime-spec
and lettingrunc
consume it fromconfig.json
. It would the best if we could simply pass the spec we've already generated to the containerd clientNewContainer()
method viacontainerd.WithSpec()
(containerd/container_opts.go
Line 199 in 1291671
However, since
containerd
vendors theruntime-spec
library itself, we end up with Go compilation errors because of the conflicting packages (our gopath, and containerd's vendored libs). I imagine you are vendoring because you want to pin versions and be able to build the binaries, and that makes sense but it makes consuming the library a little difficult.I might be totally missing some trick here, and it'd be great if that were true but I only see a few options for us here:
vndr
dependency management tool you are using can handle vendored directories in the same way thatdep
supposedly does, and move over? (ugh, even if it works)containerd
? (no thanks)containerd
library from the runtime? (sad, not sure if it's possible)I feel like I must be missing something here, since other projects must be consuming
containerd
, it'd be great if you could point me in the right direction!Thanks,
Will
The text was updated successfully, but these errors were encountered: