From a7e5a026559876bbec62a6835d96678601f3fed0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20Baranowski?= Date: Fri, 6 Oct 2023 00:27:48 +0200 Subject: [PATCH] fix: Exclude ai-navigator-app from the bundle (#1655) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: MikoĊ‚aj Baranowski --- make/release.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/make/release.mk b/make/release.mk index 5cff688ca..25682de01 100644 --- a/make/release.mk +++ b/make/release.mk @@ -6,9 +6,11 @@ S3_ACL ?= "bucket-owner-full-control" release: ARCHIVE_NAME = kommander-applications-$(GIT_TAG).tar.gz release: PUBLISHED_URL = https://downloads.d2iq.com/dkp/$(GIT_TAG)/$(ARCHIVE_NAME) release: install-tool.awscli + # We don't want to have ai-navigator in airgapped bundle + # connected customers download k-apps from github where it's still present git archive --format "tar.gz" -o $(ARCHIVE_NAME) \ $(GIT_TAG) -- \ - common services charts + common services charts ":(exclude)services/ai-navigator-app" aws s3 cp --acl $(S3_ACL) $(ARCHIVE_NAME) s3://$(S3_BUCKET)/$(S3_PATH)/ echo "Published to $(PUBLISHED_URL)" ifeq (,$(findstring dev,$(GIT_TAG)))