Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for release 0.5.0 #631

Merged
merged 1 commit into from
Apr 18, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ REPO_PATH="github.com/kubeflow/mpi-operator"
REL_OSARCH="linux/amd64"
GitSHA=$(shell git rev-parse HEAD)
Date=$(shell date "+%Y-%m-%d %H:%M:%S")
RELEASE_VERSION?=v0.4.0
RELEASE_VERSION?=v0.5.0
CONTROLLER_VERSION?=v2
BASE_IMAGE_SSH_PORT?=2222
IMG_BUILDER=docker
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.0/deploy/v2beta1/mpi-operator.yaml
kubectl apply --server-side -f https://raw.githubusercontent.com/kubeflow/mpi-operator/v0.5.0/deploy/v2beta1/mpi-operator.yaml
```

Alternatively, follow the [getting started guide](https://www.kubeflow.org/docs/started/getting-started/) to deploy Kubeflow.
Expand Down
13 changes: 13 additions & 0 deletions RELEASE.md
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# MPI Operator Releases

## Release v0.5.0
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could we mention that we have started to support K8s v1.28 and v1.29?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

uhm... it should have run before. But I can mention it in the cleanups.

Are we missing any PR before I rebase?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

uhm... it should have run before. But I can mention it in the cleanups.

That makes sense.

Are we missing any PR before I rebase?

The last piece is #634.

* Features:
* Add support for MPICH (#562, @sheevy)
* Field runLauncherAsWorker allows to add the launcher pod into the hostfile as a worker (#612, @kuizhiqing)
* Add PodGroup minResources calculation for volcano integration (#566, @lowang-bh)
* Bug fixes:
* Fix panic when using PodGroups and PriorityClasses (#561, @tenzen-y)
* Fix installation of mpijob Python module (#579, @vsoch)
* Fix hostfile when jobs in different namespaces have the same name (#622, @kuizhiqing)
* Clean ups:
* Upgrade k8s libraries to v1.29 (#633, @tenzen-y)
* Fail the mpi-operator binary if access to API is denied (#619, @emsixteeen)

## Release v0.4.0
* Breaking changes
* Removed v1 operator. If you want to use MPIJob v1, you can use the training-operator.
Expand Down
Loading