Skip to content
This repository was archived by the owner on Aug 20, 2025. It is now read-only.
Open
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
18 changes: 18 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,24 @@ image-push: ## Push container image
.PHONY: image
image: image-build image-push ## Build and push docker image with the manager.

##@ Release
define update-manifests
sed -i 's/newTag: .*/newTag: $(1)/' config/manager/kustomization.yaml
endef

.PHONY: release
release: ## Create a new release
$(call header,"Releasing version $(VERSION)")
@$(call update-manifests,$(VERSION)); \
git add config/ && \
git commit -m "release: $(VERSION)" && \
git tag -a "$(VERSION)" -m "Release $(VERSION)"; \
$(call update-manifests,latest); \
git add config/ && \
git commit -m "release: next iteration"
@echo "Done, don't forget to push. When pushing, add --tags to your call."


##@ Deployment

ifndef ignore-not-found
Expand Down