File tree Expand file tree Collapse file tree 6 files changed +23
-5
lines changed
Expand file tree Collapse file tree 6 files changed +23
-5
lines changed Original file line number Diff line number Diff line change 1+ ## v0.10.4
2+
3+ Changes since ` v0.10.3 ` :
4+
5+ ## Changes by Kind
6+
7+ ### Bug or Regression
8+
9+ - Fix bug which resulted in under-utilization of the resources in a Cohort.
10+ Now, when a ClusterQueue is configured with ` preemption.reclaimWithinCohort: Any ` ,
11+ its resources can be lent out more freely, as we are certain that we can reclaim
12+ them later. Please see PR #4813 for detailed description of scenario. (#4823 , @gabesaba )
13+ - Revert making ClusterQueue.Preemption.BorrowWithinCohort as no-op when used with FairSharing, by reverting
14+ https://github.com/kubernetes-sigs/kueue/pull/4165 , which was done to prevent infinite-preemption loops as
15+ described in https://github.com/kubernetes-sigs/kueue/issues/3779 . However, it causes issues with upgrading for
16+ users who use that combination. This configuration remains deprecated and can be removed without any notice
17+ in future releases, so please consider alternatives. (#4819 , @mimowo )
18+
119## v0.10.3
220
321Changes since ` v0.10.2 ` :
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ LD_FLAGS += -X '$(version_pkg).GitCommit=$(shell git rev-parse HEAD)'
7676
7777# Update these variables when preparing a new release or a release branch.
7878# Then run `make prepare-release-branch`
79- RELEASE_VERSION =v0.10.3
79+ RELEASE_VERSION =v0.10.4
8080RELEASE_BRANCH =release-0.10
8181# Version used form Helm which is not using the leading "v"
8282CHART_VERSION := $(shell echo $(RELEASE_VERSION ) | cut -c2-)
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ Read the [overview](https://kueue.sigs.k8s.io/docs/overview/) to learn more.
5757To install the latest release of Kueue in your cluster, run the following command:
5858
5959``` shell
60- kubectl apply --server-side -f https://github.com/kubernetes-sigs/kueue/releases/download/v0.10.3 /manifests.yaml
60+ kubectl apply --server-side -f https://github.com/kubernetes-sigs/kueue/releases/download/v0.10.4 /manifests.yaml
6161```
6262
6363The controller runs in the ` kueue-system ` namespace.
Original file line number Diff line number Diff line change @@ -18,4 +18,4 @@ version: 0.1.0
1818# incremented each time you make changes to the application. Versions are not expected to
1919# follow Semantic Versioning. They should reflect the version the application is using.
2020# It is recommended to use it with quotes.
21- appVersion : " v0.10.3 "
21+ appVersion : " v0.10.4 "
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ $ helm install kueue kueue/ --create-namespace --namespace kueue-system
3535Or use the charts pushed to ` us-central1-docker.pkg.dev/k8s-staging-images/kueue/charts/kueue ` :
3636
3737``` bash
38- helm install kueue oci://us-central1-docker.pkg.dev/k8s-staging-images/kueue/charts/kueue --version=" 0.10.3 " --create-namespace --namespace=kueue-system
38+ helm install kueue oci://us-central1-docker.pkg.dev/k8s-staging-images/kueue/charts/kueue --version=" 0.10.4 " --create-namespace --namespace=kueue-system
3939```
4040
4141##### Verify that controller pods are running properly.
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ ignoreFiles = []
9090 # The major.minor version tag for the version of the docs represented in this
9191 # branch of the repository. Used in the "version-banner" partial to display a
9292 # version number for this doc set.
93- version = " v0.10.3 "
93+ version = " v0.10.4 "
9494
9595 # Flag used in the "version-banner" partial to decide whether to display a
9696 # banner on every page indicating that this is an archived version of the docs.
You can’t perform that action at this time.
0 commit comments