Skip to content

Commit 82e6a96

Browse files
committed
image tag is just sha, rm 'devbuild' default
'devbuild' moniker is not needed, that is a contiv/install default convention Simplify the tag name to just the SHA, which ties the image tag to the actual contents, and not be variable based on a build time environment variable * Added some comments * compile-with-docker was not using the tag variable Signed-off-by: Chris Plock <[email protected]>
1 parent 83e1bda commit 82e6a96

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

Makefile

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# make BUILD_VERSION=1.2.3 [compile-with-docker] will set netplugin -version output
2+
# make BUILD_VERSION=1.2.3 tar will set the tar filename
3+
# default naming will otherwise be value of version/CURRENT_VERSION
4+
5+
16
.PHONY: all all-CI build clean default unit-test release tar checks go-version gofmt-src \
27
golint-src govet-src run-build compile-with-docker
38

@@ -15,8 +20,7 @@ NAME := netplugin
1520
VERSION_FILE := $(NAME)-version
1621
VERSION := `cat $(VERSION_FILE)`
1722
TAR_EXT := tar.bz2
18-
# BUILD_VERSION=1.2 make --> 1.2-1097d2a7, otherwise devbuild-1097d2a7
19-
export NETPLUGIN_CONTAINER_TAG := $(or $(BUILD_VERSION),devbuild)-$(shell ./scripts/getGitCommit.sh)
23+
NETPLUGIN_CONTAINER_TAG := $(shell ./scripts/getGitCommit.sh)
2024
TAR_FILENAME := $(NAME)-$(VERSION).$(TAR_EXT)
2125
TAR_LOC := .
2226
TAR_FILE := $(TAR_LOC)/$(TAR_FILENAME)
@@ -104,7 +108,7 @@ compile-with-docker:
104108
docker build \
105109
--build-arg NIGHTLY_RELEASE=${NIGHTLY_RELEASE} \
106110
--build-arg BUILD_VERSION=${BUILD_VERSION} \
107-
-t netplugin-build:$${BUILD_VERSION:-devbuild}-$$(./scripts/getGitCommit.sh) .
111+
-t netplugin-build:$(NETPLUGIN_CONTAINER_TAG) .
108112

109113
build-docker-image: start
110114
vagrant ssh netplugin-node1 -c 'bash -lc "source /etc/profile.d/envvar.sh && cd /opt/gopath/src/github.com/contiv/netplugin && make host-build-docker-image"'

0 commit comments

Comments
 (0)