-
Notifications
You must be signed in to change notification settings - Fork 180
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
Build versioned v2plugin from versioned binaries #1040
Conversation
addec2e
to
e72937c
Compare
checking on a version naming bug during testing |
e72937c
to
ecd69e3
Compare
|
Makefile
Outdated
@@ -129,7 +134,7 @@ update: | |||
# setting CONTIV_NODES=<number> while calling 'make demo' can be used to bring | |||
# up a cluster of <number> nodes. By default <number> = 1 | |||
start: | |||
CONTIV_DOCKER_VERSION="$${CONTIV_DOCKER_VERSION:-$(DEFAULT_DOCKER_VERSION)}" CONTIV_NODE_OS=${CONTIV_NODE_OS} vagrant up |
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.
Why are you making this change here? It seems unrelated to the purpose of the PR.
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.
was reducing duplication (the build.sh defaults this to same value), but unrelated to PR, backing this out
Makefile
Outdated
@@ -6,7 +6,6 @@ | |||
.PHONY: all all-CI build clean default unit-test release tar checks go-version gofmt-src \ | |||
golint-src govet-src run-build compile-with-docker | |||
|
|||
DEFAULT_DOCKER_VERSION := 1.12.6 |
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.
Please leave this alone.
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.
will back this change out
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.
The Docker version related changes need to be removed. We need to be able to support specifying custom Docker version. We'll use this again soon.
Makefile
Outdated
@@ -213,7 +218,7 @@ ssh: | |||
@vagrant ssh netplugin-node1 -c 'bash -lc "cd /opt/gopath/src/github.com/contiv/netplugin/ && bash"' || echo 'Please run "make demo"' | |||
|
|||
ssh-build: start | |||
vagrant ssh netplugin-node1 -c 'bash -lc "source /etc/profile.d/envvar.sh && cd /opt/gopath/src/github.com/contiv/netplugin && make run-build install-shell-completion"' |
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.
This change doesn't seem related to the goal of this PR. Can you split this in a separate cleanup commit instead, please?
The permissions of some of the files have been changed. Are those changes intentional or accidental? |
the jenkins file was unintentional, the bash script was intentional
|
a89707c
to
b947648
Compare
This enables build and docker image caching on a build machine for the v2plugin. The new target demo-v2plugin-from-local does everything it can locally before spawning the VM, failing much faster on any PR issues, which is good for CI turnaround. It runs a little faster than demo-v2plugin after base image layers are cached. v2plugin_rootfs (called by host-pluginfs-create) builds a docker container runtime with a versioned archive of netplugin binaries, then extracts the entire filesystem from the container, which is now left as a versioned tarball. The versioned archive of netplugin binaries used for v2plugin can now be created in two ways: * run-build (dependency for demo-v2plugin) will compile then version an archive with built assets (runs only on the VM) * tar target (locally or in VM) host-pluginfs-create can be run in the VM or locally The plugin rootfs is left as a tarball because: * docker in a VM had internal issues when creating the plugin when the rootfs was unarchived on the host and exposed though a virtualbox mount, at least on OS X * the rootfs is versioned This adjusted host-plugin-release and demo-v2plugin both use a new target 'host-pluginfs-unpack' Drive-by: * Fix config.template for the CONTIV_V2PLUGIN_NAME replacement * gtar support for OS X * use cp -a for maintaining owner Signed-off-by: Chris Plock <[email protected]>
b947648
to
13fcf40
Compare
build PR |
build PR |
build PR |
2 similar comments
build PR |
build PR |
Makefile
Outdated
host-plugin-restart host-swarm-restart) | ||
|
||
# Just like demo-v2plugin except builds are done locally and cached | ||
demo-v2plugin-from-local: export CONTIV_DOCKER_VERSION ?= 1.13.1 |
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.
Can this var and the one for CONTIV_DOCKER_VERSION under demo-v2plugin
below be consolidated into a variable at the top of the file so it only needs to be changed in one place?
COPY netplugin netmaster netctl startcontiv.sh / | ||
# copy in binaries and scripts | ||
ARG TAR_FILE | ||
ADD ${TAR_FILE} / |
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.
If you're copying local files, use COPY
instead of ADD
... generally you will not want to use ADD
for anything, and all of Docker's official Dockerfiles have moved from ADD
to COPY
now
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.
the ADD exploded the tar file, I'd have to create another layer for a RUN to expand, there is nothing suggesting deprecation on the docs:
https://docs.docker.com/engine/reference/builder/#add
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.
Oh, right. "TAR_FILE" lol (used to looking for .tar.gz and so on) 😂
Do we need to worry about spaces in paths with any of this stuff? |
build PR |
only place I could see that isn't a subdirectory is here, which was a pre-existing issue in many placements if GOPATH has spaces: |
build PR |
@@ -1,11 +1,15 @@ | |||
# we want to get the git commit SHA but not all the binary repo data | |||
.git/objects/pack | |||
bin/ | |||
**/*.pyc |
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.
Forgot to mention this earlier... could you do a git rm **/*.pyc
and see if anything is currently checked in which shouldn't be? Could also be in a separate PR
*.tar | ||
**/*.tar.gz |
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.
Same on this guy
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
This enables build and caching locally or in a build machine the
v2plugin before creating test environment VMs and failing much faster
on any PR issues, which is good for CI turnaround.
v2plugin_rootfs (called by host-pluginfs-create) builds a docker
container runtime with a versioned archive of netplugin binaries, then
extracts the entire filesystem from the container, which is now left as
a versioned tarball.
The versioned archive of netplugin binaries used for v2plugin can now be
created in two ways:
archive with built assets (runs only on the VM)
host-pluginfs-create can be run in the VM or locally
Leaving the plugin rootfs as a tarball has a few advantages reasons:
rootfs was unarchived on the host and exposed though a virtualbox
mount, at least on OS X
This adjusted host-plugin-release and demo-v2plugin to both use a new
target 'host-pluginfs-unpack'
Drive-by: