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

Vendored library conflicts #2289

Closed
williammartin opened this issue Apr 12, 2018 · 7 comments
Closed

Vendored library conflicts #2289

williammartin opened this issue Apr 12, 2018 · 7 comments
Milestone

Comments

@williammartin
Copy link

williammartin commented Apr 12, 2018

Hey all,

As you know, we're starting to look at consuming containerd in Garden, instead of talking to runc 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 the runtime-spec and letting runc consume it from config.json. It would the best if we could simply pass the spec we've already generated to the containerd client NewContainer() method via containerd.WithSpec() (

func WithSpec(s *specs.Spec, opts ...oci.SpecOpts) NewContainerOpts {
)

However, since containerd vendors the runtime-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:

  1. Fork containerd and maintain a fork without vendored libs (yikes)
  2. Figure out whether the vndr dependency management tool you are using can handle vendored directories in the same way that dep supposedly does, and move over? (ugh, even if it works)
  3. Move ourselves to use dep for all of eternity, which might work with no changes to containerd? (no thanks)
  4. PR to separate the 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

@cpuguy83
Copy link
Member

We generally strip vendor from our dependencies and revendor the needed packages in our own project.

@crosbymichael
Copy link
Member

You could have an old vndr installed on your system and its not cleaning up sub-vendored packages. As longs as your vendor.conf revisions are the same as upstream you should be fine.

An updated vndr should do this automatically for you.

@ehazlett
Copy link
Member

@williammartin Did updating vndr help?

@williammartin
Copy link
Author

williammartin commented Apr 24, 2018

@ehazlett Haven't checked yet but changing our vendoring solution to vndr is not the easiest. We have a pretty horrible old school submodule (repo is gopath) based vendoring tool, which has worked up to now but seems like it might be time to move off. Happy to close this though, as I think we have discussed the possible options.

@crosbymichael
Copy link
Member

@williammartin that solution would be to remove the subpackage's vendor dirs or else go treats them as separate packages and causes the conflicts.

@crosbymichael
Copy link
Member

@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 crosbymichael added this to the 1.2 milestone May 2, 2018
@williammartin
Copy link
Author

@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.

crosbymichael added a commit to crosbymichael/containerd that referenced this issue May 17, 2018
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]>
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

No branches or pull requests

4 participants