From f246355e1577e340bb223a02291025c7dee8b0ba Mon Sep 17 00:00:00 2001 From: Yuki Iwai Date: Wed, 16 Oct 2024 04:10:15 +0900 Subject: [PATCH] Prepare v0.6.0 release Signed-off-by: Yuki Iwai --- Makefile | 2 +- README.md | 2 +- RELEASE.md | 10 ++++++++++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3f32c99b..388e02dc 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ BIN_DIR=_output/cmd/bin REPO_PATH="github.com/kubeflow/mpi-operator" GitSHA=$(shell git rev-parse HEAD) Date=$(shell date "+%Y-%m-%d %H:%M:%S") -RELEASE_VERSION?=v0.5.0 +RELEASE_VERSION?=v0.6.0 CONTROLLER_VERSION?=v2 BASE_IMAGE_SSH_PORT?=2222 IMG_BUILDER=docker diff --git a/README.md b/README.md index 97291ec6..5d710ddf 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ kubectl apply --server-side -f https://raw.githubusercontent.com/kubeflow/mpi-op - Release Version ```shell -kubectl apply --server-side -f https://raw.githubusercontent.com/kubeflow/mpi-operator/v0.5.0/deploy/v2beta1/mpi-operator.yaml +kubectl apply --server-side -f https://raw.githubusercontent.com/kubeflow/mpi-operator/v0.6.0/deploy/v2beta1/mpi-operator.yaml ``` Alternatively, follow the [getting started guide](https://www.kubeflow.org/docs/started/getting-started/) to deploy Kubeflow. diff --git a/RELEASE.md b/RELEASE.md index b39f85a5..c93e2b87 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,5 +1,15 @@ # MPI Operator Releases +## Release v0.6.0 +* Features: + * Support ManagedBy feature (`.spec.runPolicy.managedBy`) inspired by batch/v1 Job. + * This allows us to dispatch MPIJobs to the multiple clusters powered by Kueue's MultiKueue. (#650, @mszadkow) +* Clean ups: + * Upgrade k8s libraries to v1.31 (#664, @ArangoGutierrez) + * Upgrade debian version to bookworm and MPI versions are upgraded in the following: (#661, @tenzen-y) + * OpenMPI: v4.1.0 -> v4.1.4 + * MPICH: 3.4.1 -> 4.0.2 + ## Release v0.5.0 * Features: * Add support for MPICH (#562, @sheevy)