clearcontainers / osbuilder

Clear Containers guest OS building scripts
20 stars 12 forks source link

Typo fix: add missing `make` command #53

Closed t3hmrman closed 6 years ago

t3hmrman commented 6 years ago

About the two things:

  1. Ahhh OK, I will go ahead and make an issue and fix up the patch format!

  2. That actually has to do with newer kernels requiring the libelf dev (?) -- I've been running into this a lot, it turns out for newer versions you need to dnf install elfutils-libelf-devel, I made the change locally in the Dockerfile but forgot about it.

Also @grahamwhaley , yeah, I'm actually trying to get kata-containers running on Container Linux (CoreOS) -- it's been an long ride but basically I've statically compiled kata-runtime, kata-proxy, kata-shim, and a minimal build of qemu-system-x86_64 since it doesn't come with Container Linux releases currently.

After the static building I was trying to get it running under containerd's untrusted workloads (new in v1.1.0), then I realized I didn't have an image to feed to kata just sitting around and couldn't find one... so I found this project.

t3hmrman commented 6 years ago

I've added the Dockerfile change I was making locally so maybe the Jenkins build will pass now, while I look at the patch format

[EDIT] - Looking at the patch format docs does it actually apply to Github PRs? I assume the sign off footer should go into the squashed commit?

grahamwhaley commented 6 years ago

Yeah, the sign off needs to be in the commits (each commit). You only need one Fixes in a commit message per PR Oh, btw, kata has its own osbuilder as well, that also does initrd images: https://github.com/kata-containers/osbuilder

t3hmrman commented 6 years ago

Thanks for clarifying -- if the build passes I'll go ahead and squash the commits and fix the commit message.

Thanks for the link to the other osbuilder, I'll make sure to use that in the future!

t3hmrman commented 6 years ago

Hey @grahamwhaley I've fixed up the commit mesage, please let me know if anything else needs to be changed.

t3hmrman commented 6 years ago

Just realized I filed the ticket in the wrong place (clearcontainers/runtime), #54 is the right one, so I updated the commit message to reflect it

grahamwhaley commented 6 years ago

Sorry for the delay there @t3hmrman - my email system started to 'eat' emails for some reason, and I didn't see this. All green ... merging!

t3hmrman commented 6 years ago

No problem @grahamwhaley , glad I contribute a tiny bit to help -- thanks for all the work on the project!