From cf313d415b0f1f8fa9c8fc0cc69b9b08bfee03ae Mon Sep 17 00:00:00 2001 From: Dario Tranchitella Date: Mon, 30 May 2022 13:09:02 +0200 Subject: [PATCH] chore(make): using docker hub image --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 642976f2..6c3805a6 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ VERSION ?= $$(git describe --abbrev=0 --tags --match "v*") # Default bundle image tag -BUNDLE_IMG ?= quay.io/clastix/capsule:$(VERSION)-bundle +BUNDLE_IMG ?= clastix/capsule:$(VERSION)-bundle # Options for 'bundle-build' ifneq ($(origin CHANNELS), undefined) BUNDLE_CHANNELS := --channels=$(CHANNELS) @@ -13,7 +13,7 @@ endif BUNDLE_METADATA_OPTS ?= $(BUNDLE_CHANNELS) $(BUNDLE_DEFAULT_CHANNEL) # Image URL to use all building/pushing image targets -IMG ?= quay.io/clastix/capsule:$(VERSION) +IMG ?= clastix/capsule:$(VERSION) # Produce CRDs that work back to Kubernetes 1.11 (no version conversion) CRD_OPTIONS ?= "crd:preserveUnknownFields=false"