From bef082a931c35c8f0768fd4312faa5a6848054b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20Baranowski?= Date: Thu, 5 Oct 2023 13:49:29 +0200 Subject: [PATCH] fix: Exclude ai-navigator-app from the bundle 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)))