Skip to content

Commit 174aaa7

Browse files
authored
Prepare release v0.9.2 (#3862)
Signed-off-by: Yuki Iwai <yuki.iwai.tz@gmail.com>
1 parent 92ed5a7 commit 174aaa7

File tree

5 files changed

+34
-4
lines changed

5 files changed

+34
-4
lines changed

CHANGELOG/CHANGELOG-0.9.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
## v0.9.2
2+
3+
## Changes by Kind
4+
5+
### Bug or Regression
6+
7+
- Added validation for Deployment queue-name to fail fast (#3580, @mbobrovskyi)
8+
- Added validation for StatefulSet queue-name to fail fast. (#3585, @mbobrovskyi)
9+
- Fix a bug which occasionally prevented updates to the PodTemplate of the Job on the management cluster
10+
when starting a Job (e.g. updating nodeSelectors), when using `MultiKueueBatchJobWithManagedBy` enabled. (#3731, @IrvingMg)
11+
- Fix dropping of reconcile requests for non-leading replica, which was resulting in workloads
12+
getting stuck pending after the rolling restart of Kueue. (#3613, @mimowo)
13+
- Fix memory leak due to workload entries left in MultiKueue cache. The leak affects the 0.9.0 and 0.9.1
14+
releases which enable MultiKueue by default, even if MultiKueue is not explicitly used on the cluster. (#3843, @mimowo)
15+
- Fix misleading log messages from workload_controller indicating not existing LocalQueue or
16+
Cluster Queue. For example "LocalQueue for workload didn't exist or not active; ignored for now"
17+
could also be logged the ClusterQueue does not exist. (#3832, @PBundyra)
18+
- Fix preemption when using Hierarchical Cohorts by considering as preemption candidates workloads
19+
from ClusterQueues located further in the hierarchy tree than direct siblings. (#3705, @gabesaba)
20+
- Fix scheduling of workload which does not include the toleration for the taint in ResourceFlavor's spec.nodeTaints,
21+
if the toleration is specified on the ResourceFlavor itself. (#3724, @PBundyra)
22+
- Fix the bug which prevented the use of MultiKueue if there is a CRD which is not installed
23+
and removed from the list of enabled integrations. (#3631, @mszadkow)
24+
- TAS: Fixed bug that doesn't allow to update cache on delete Topology. (#3655, @mbobrovskyi)
25+
- TAS: The CQ referencing a Topology is deactivated if the topology does not exist. (#3819, @mimowo)
26+
27+
### Other (Cleanup or Flake)
28+
29+
- Replace deprecated gcr.io/kubebuilder/kube-rbac-proxy with registry.k8s.io/kubebuilder/kube-rbac-proxy. (#3749, @mbobrovskyi)
30+
131
## v0.9.1
232

333
Changes since `v0.9.0`:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.9.1
79+
RELEASE_VERSION=v0.9.2
8080
RELEASE_BRANCH=release-0.9
8181

8282
.PHONY: all

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Read the [overview](https://kueue.sigs.k8s.io/docs/overview/) to learn more.
5757
To 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.9.1/manifests.yaml
60+
kubectl apply --server-side -f https://github.com/kubernetes-sigs/kueue/releases/download/v0.9.2/manifests.yaml
6161
```
6262

6363
The controller runs in the `kueue-system` namespace.

charts/kueue/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.9.1"
21+
appVersion: "v0.9.2"

site/hugo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.9.1"
93+
version = "v0.9.2"
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.

0 commit comments

Comments
 (0)