X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=docker%2Fkube-conformance%2FMakefile;h=8e76e1405d54a16504eca4fbd3dd114386faf490;hb=6b3865b2f09ff3ac8588085f12ca3d8bfc16581e;hp=a5b5b99493541bdb9658c7cba9b44cc721e840a8;hpb=ce4ad29dc48317cc7cb60fe433072ac46dea2ebb;p=validation.git diff --git a/docker/kube-conformance/Makefile b/docker/kube-conformance/Makefile index a5b5b99..8e76e14 100644 --- a/docker/kube-conformance/Makefile +++ b/docker/kube-conformance/Makefile @@ -15,16 +15,20 @@ ############################################################################## export WORK_DIR?=$(TAG_PRE) -export TAG_VER?=v1.11 +export KUBE_VERSION=1.15 +export TAG_VER?=v$(KUBE_VERSION) .PHONY: .build .build:: .submodules_patched $(MAKE) -C $(TAG_PRE) e2e.test kubectl ginkgo .PHONY: all -all: .push_image .push_manifest +all: push-image .push_manifest .PHONY: build build: .build +.PHONY: push-image +push-image: .push_image + include ../build.mk