Skip to content

Commit ae30efd

Browse files
authored
Merge pull request #1116 from contiv/master
Merge master into release-1.2
2 parents 485e5d0 + 4043693 commit ae30efd

File tree

2 files changed

+16
-25
lines changed

2 files changed

+16
-25
lines changed

Makefile

+7-20
Original file line numberDiff line numberDiff line change
@@ -384,24 +384,11 @@ archive:
384384
-C ../scripts contrib/completion/bash/netctl get-contiv-diags
385385

386386
# build versioned archive of netplugin binaries
387-
tar: compile-with-docker binaries-from-container archive
388-
389-
clean-tar:
390-
@rm -f $(TAR_LOC)/*.$(TAR_EXT)
391-
@rm -f install/v2plugin/v2plugin-*.tar.gz
392-
393-
# do not run directly, use "release" target
394-
release-built-version: tar
395-
TAR_FILENAME=$(TAR_FILENAME) TAR_FILE=$(TAR_FILE) OLD_VERSION=${OLD_VERSION} \
396-
NIGHTLY_RELEASE=${NIGHTLY_RELEASE} scripts/release.sh
397-
@make clean-tar
398-
399-
# The first "release" below is not a target, it is a "target-specific variable"
400-
# and sets (and in this case exports) a variable to the target's environment
401-
# The second release runs make as a subshell but with BUILD_VERSION set
402-
# to write the correct version for assets everywhere
403-
#
387+
tar:
388+
rm -f $(TAR_FILE)
389+
./install/k8s/contiv/contiv-compose use-release -i -v $(BUILD_VERSION) install/k8s/contiv/contiv-base.yaml
390+
$(TAR) -jcf $(TAR_FILE) -C install/k8s/contiv/ .
391+
404392
# GITHUB_USER and GITHUB_TOKEN are needed be set (used by github-release)
405-
release: export BUILD_VERSION=$(shell cat version/CURRENT_VERSION)
406-
release:
407-
@make release-built-version
393+
release: tar
394+
TAR_FILENAME=$(TAR_FILENAME) TAR_FILE=$(TAR_FILE) scripts/release.sh

install/k8s/contiv/contiv-compose

+9-5
Original file line numberDiff line numberDiff line change
@@ -164,13 +164,13 @@ class ContivComposer(object):
164164

165165
def use_release(self, resource, args):
166166
if args.get('version') is not None:
167-
args['netplugin_img'] = 'contiv/netplugin:%s' % args['use_release']
167+
args['netplugin_img'] = 'contiv/netplugin:%s' % args['version']
168168
args['netplugin_init_img'] = 'contiv/netplugin-init:%s' % args[
169-
'use_release']
170-
args['stat_exporter_img'] = 'contiv/stats:%s' % args['use_release']
169+
'version']
170+
args['stat_exporter_img'] = 'contiv/stats:%s' % args['version']
171171
args['auth_proxy_img'] = 'contiv/auth_proxy:%s' % args[
172-
'use_release']
173-
args['ovs_img'] = 'contiv/ovs:%s' % args['use_release']
172+
'version']
173+
args['ovs_img'] = 'contiv/ovs:%s' % args['version']
174174

175175
def compose(self, args):
176176
if args['target'] not in ('add-systest', 'add-prometheus',
@@ -213,6 +213,10 @@ class ContivComposer(object):
213213
args['netplugin_img'])
214214
self._update_container_image(resource, 'contiv-netmaster',
215215
args['netplugin_img'])
216+
self._update_container_image(resource, 'contiv-netctl',
217+
args['netplugin_img'])
218+
self._update_container_image(resource, 'contiv-cni',
219+
args['netplugin_img'])
216220
if args.get('netplugin_init_img') is not None:
217221
self._update_container_image(resource, 'contiv-netplugin-init',
218222
args['netplugin_init_img'])

0 commit comments

Comments
 (0)