Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: xxclude ai-nav info agent from the bundle #1735

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion make/release.mk
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ 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
# and we don't want to have ai-navigator-cluster-info-agent in airgapped bundle
# the connected customers download the k-apps from GitHub where it is still present
git archive --format "tar.gz" -o $(ARCHIVE_NAME) \
$(GIT_TAG) -- \
common services charts ":(exclude)services/ai-navigator-app"
common services charts ":(exclude)services/ai-navigator-app" \
common services charts ":(exclude)services/ai-navigator-cluster-info-agent"
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
Loading