Skip to content

Commit

Permalink
ci: rename the kustomize tarball to config-sync.tar.gz (#1473)
Browse files Browse the repository at this point in the history
This is intended to be a less generic name
  • Loading branch information
sdowell authored Nov 1, 2024
1 parent c5a41be commit ba11b47
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile.build
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,8 @@ config-sync-manifest-local: docker-registry config-sync-manifest
# Kustomize bundle
###################################

KUSTOMIZATION_TARBALL ?= config-sync.tar.gz

# Packages the kustomization file into a tarball alongside the built config sync
# manifests. Assumes the Config Sync manifests are already built in the output dir.
.PHONY: package-kustomize-bundle
Expand All @@ -215,7 +217,7 @@ package-kustomize-bundle:
sed -i \
-e "s|CONFIG_SYNC_REGISTRY|$(REGISTRY)|g" \
$(OUTPUT_DIR)/tmp/kustomization/README.md
cd $(OUTPUT_DIR)/tmp/kustomization && tar -czvf $(OSS_MANIFEST_STAGING_DIR)/kustomization.tar.gz .
cd $(OUTPUT_DIR)/tmp/kustomization && tar -czvf $(OSS_MANIFEST_STAGING_DIR)/$(KUSTOMIZATION_TARBALL) .
rm -rf $(OUTPUT_DIR)/tmp/kustomization

###################################
Expand Down

0 comments on commit ba11b47

Please sign in to comment.