From 2029dadc0621e22f3a81765c1ef82369bf9d2a21 Mon Sep 17 00:00:00 2001 From: Chirayu Kapoor Date: Fri, 25 Nov 2022 18:56:19 +0530 Subject: [PATCH] Add a make target to gernerate all release manifests Signed-off-by: Chirayu Kapoor --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index ac94437bc12f..eebfcb1b4abb 100644 --- a/Makefile +++ b/Makefile @@ -829,6 +829,11 @@ release: clean-release ## Build and push container images using the latest git t git checkout "${RELEASE_TAG}" # Build binaries first. GIT_VERSION=$(RELEASE_TAG) $(MAKE) release-binaries + # Set the manifest images to the staging/production bucket and Builds the manifests to publish with a release. + $(MAKE) release-manifests-all + +.PHONY: release-manifests-all +release-manifests-all: # Set the manifest images to the staging/production bucket and Builds the manifests to publish with a release. # Set the manifest image to the production bucket. $(MAKE) manifest-modification REGISTRY=$(PROD_REGISTRY) ## Build the manifests