From 99035e0ed966d797ae95204bbd4a75ff61742188 Mon Sep 17 00:00:00 2001 From: Srihari Date: Wed, 7 Jun 2023 13:05:19 +0530 Subject: [PATCH 1/2] Update README.md with release process steps --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index ff2b12031..511789c68 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,19 @@ Follow the [build instructions here](./doc/build/build.md) to build the Multi-Cl Refer to [deployment instructions here](./doc/deploy/deployment.md) on how to deploy the `multi-cluster-app-dispatcher` as a controller in Kubernetes. + +## Release Process + +1. Update version in [CONTROLEER_VERSION file](https://github.com/project-codeflare/multi-cluster-app-dispatcher/blob/main/CONTROLLER_VERSION) to the new release version. + +2. Once CONTROLLER_VERSION file change merged , create the release branch against the main as `release-`. + +3. The release branch then trigger the [image build/push pipeline](https://app.travis-ci.com/github/project-codeflare/multi-cluster-app-dispatcher/branches) and push the image to [mcad-controller quay repository](https://quay.io/repository/project-codeflare/mcad-controller?tab=tags) with specified release version tag. + +4. Create a new release on [Releases page](https://github.com/project-codeflare/multi-cluster-app-dispatcher/releases) by creating a tag with same value as in CONTROLLER_VERSION file formatted (with v prefix) , provide proper release title and description. + +5. The latest release changes should also reflect in the [mcad go package module](https://pkg.go.dev/github.com/project-codeflare/multi-cluster-app-dispatcher). + ## Tutorial Refer to the [tutorial](./doc/usage/tutorial.md) on how to use `multi-cluster-app-dispatcher` to run batch job in Kubernetes From 073c6959706eb97b91b585b50f842b5acf37c146 Mon Sep 17 00:00:00 2001 From: Srihari Date: Wed, 14 Jun 2023 11:29:53 +0530 Subject: [PATCH 2/2] fix review comments --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 511789c68..52b60600a 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Refer to [deployment instructions here](./doc/deploy/deployment.md) on how to de ## Release Process -1. Update version in [CONTROLEER_VERSION file](https://github.com/project-codeflare/multi-cluster-app-dispatcher/blob/main/CONTROLLER_VERSION) to the new release version. +1. Update version in [CONTROLLER_VERSION file](https://github.com/project-codeflare/multi-cluster-app-dispatcher/blob/main/CONTROLLER_VERSION) to the new release version. 2. Once CONTROLLER_VERSION file change merged , create the release branch against the main as `release-`.