From f16163b336fcf5f99bd26bd4102c0906d0823f7d Mon Sep 17 00:00:00 2001 From: Sharif Elgamal Date: Thu, 13 May 2021 10:30:12 -0700 Subject: [PATCH] enable experimental CLI --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3ac8ec8fa4..a4ca3d0444 100644 --- a/Makefile +++ b/Makefile @@ -740,9 +740,9 @@ ifndef CIBUILD docker login gcr.io/k8s-minikube endif set -x; for arch in $(ALL_ARCH); do docker push ${IMAGE}-$${arch}:${TAG}; done - docker manifest create --amend $(IMAGE):$(TAG) $(shell echo $(ALL_ARCH) | sed -e "s~[^ ]*~$(IMAGE)\-&:$(TAG)~g") + $(X_BUILD_ENV) docker manifest create --amend $(IMAGE):$(TAG) $(shell echo $(ALL_ARCH) | sed -e "s~[^ ]*~$(IMAGE)\-&:$(TAG)~g") set -x; for arch in $(ALL_ARCH); do docker manifest annotate --arch $${arch} ${IMAGE}:${TAG} ${IMAGE}-$${arch}:${TAG}; done - docker manifest push $(STORAGE_PROVISIONER_MANIFEST) + $(X_BUILD_ENV) docker manifest push $(STORAGE_PROVISIONER_MANIFEST) .PHONY: push-docker push-docker: # Push docker image base on to IMAGE variable (used internally by other targets)