Skip to content

Commit

Permalink
fix: Exclude ai-navigator-app from the bundle
Browse files Browse the repository at this point in the history
Signed-off-by: Mikołaj Baranowski <mikolajb@gmail.com>
  • Loading branch information
mikolajb committed Oct 5, 2023
1 parent 80bfcbe commit bef082a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion make/release.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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)))
Expand Down

0 comments on commit bef082a

Please sign in to comment.