Skip to content

Commit b887c66

Browse files
committed
Prepare release v0.15.3
1 parent eef5feb commit b887c66

File tree

15 files changed

+71
-29
lines changed

15 files changed

+71
-29
lines changed

CHANGELOG/CHANGELOG-0.15.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,45 @@
1+
## v0.15.3
2+
3+
Changes since `v0.15.2`:
4+
5+
## Changes by Kind
6+
7+
### Feature
8+
9+
- CLI: Support "kwl" and "kueueworkload" as a shortname for Kueue Workloads. (#8469, @k8s-infra-cherrypick-robot)
10+
11+
### Bug or Regression
12+
13+
- Add lws editer and viewer roles to kustomize and helm (#8515, @k8s-infra-cherrypick-robot)
14+
- FailureRecovery: Fix Pod Termination Controller's MaxConcurrentReconciles (#8665, @k8s-infra-cherrypick-robot)
15+
- Fix ClusterQueue deletion getting stuck when pending workloads are deleted after being assumed by the scheduler. (#8548, @k8s-infra-cherrypick-robot)
16+
- Fix a bug that WorkloadPriorityClass value changes do not trigger Workload priority updates. (#8499, @ASverdlov)
17+
- HC: Avoid redundant requeuing of inadmissible workloads when multiple ClusterQueues in the same cohort hierarchy are processed. (#8510, @k8s-infra-cherrypick-robot)
18+
- Integrations based on Pods: skip using finalizers on the Pods created and managed by integrations.
19+
20+
In particular we skip setting finalizers for Pods managed by the built in Serving Workloads Deployments,
21+
StatefulSets, and LeaderWorkerSets.
22+
23+
This improves performance of suspending the workloads, and fixes occasional race conditions when a StatefulSet
24+
could get stuck when deactivating and re-activating in a short interval. (#8573, @mbobrovskyi)
25+
- JobFramework: Fixed a bug that allowed a deactivated workload to be activated. (#8438, @k8s-infra-cherrypick-robot)
26+
- LeaderWorkerSet: Fixed a bug that prevented deleting the workload when the LeaderWorkerSet was scaled down. (#8673, @mbobrovskyi)
27+
- MultiKueue now waits for WorkloadAdmitted (instead of QuotaReserved) before deleting workloads from non-selected worker clusters. To revert to the previous behavior, disable the `MultiKueueWaitForWorkloadAdmitted` feature gate. (#8600, @IrvingMg)
28+
- MultiKueue: Fix a bug that the priority change by mutating the `kueue.x-k8s.io/priority-class` label on the management cluster is not propagated to the worker clusters. (#8574, @mbobrovskyi)
29+
- MultiKueue: fix the eviction when initiated by the manager cluster (due to eg. Preemption or WairForPodsReady timeout). (#8402, @mbobrovskyi)
30+
- ProvisioningRequest: Fixed a bug that prevented events from being updated when the AdmissionCheck state changed. (#8404, @mbobrovskyi)
31+
- Revert the changes in PR https://github.com/kubernetes-sigs/kueue/pull/8599 for transitioning
32+
the QuotaReserved, Admitted conditions to `False` for Finished workloads. This introduced a regression,
33+
because users lost the useful information about the timestamp of the last transitioning of these
34+
conditions to True, without an API replacement to serve the information. (#8612, @mbobrovskyi)
35+
- Scheduling: fix the bug that setting (none -> some) a workload priority class label (kueue.x-k8s.io/priority-class) was ignored. (#8584, @andrewseif)
36+
- TAS: Fix a bug that MPIJob with runLauncherAsWorker Pod indexes are not correctly evaluated during rank-based ordering assignments. (#8663, @tenzen-y)
37+
- TAS: Fixed an issue where workloads could remain in the second-pass scheduling queue (used for integration
38+
or TAS with ProvisioningRequests, and for TAS Node Hot Swap) even if they no longer require to be in the queue. (#8431, @skools-here)
39+
- TAS: fix TAS resource flavor controller to extract only scheduling-relevant node updates to prevent unnecessary reconciliation. (#8453, @k8s-infra-cherrypick-robot)
40+
- TAS: significantly improves scheduling performance by replacing Pod listing with an event-driven
41+
cache for non-TAS Pods, thereby avoiding expensive DeepCopy operations during each scheduling cycle. (#8484, @gabesaba)
42+
143
## v0.15.2
244

345
Changes since `v0.15.1`:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ LD_FLAGS += -X '$(version_pkg).BuildDate=$(shell date -u +%Y-%m-%dT%H:%M:%SZ)'
9191

9292
# Update these variables when preparing a new release or a release branch.
9393
# Then run `make prepare-release-branch`
94-
RELEASE_VERSION=v0.15.2
94+
RELEASE_VERSION=v0.15.3
9595
RELEASE_BRANCH=release-0.15
9696
# Application version for Helm and npm (strips leading 'v' from RELEASE_VERSION)
9797
APP_VERSION := $(shell echo $(RELEASE_VERSION) | cut -c2-)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Read the [overview](https://kueue.sigs.k8s.io/docs/overview/) and watch the Kueu
6262
To install the latest release of Kueue in your cluster, run the following command:
6363

6464
```shell
65-
kubectl apply --server-side -f https://github.com/kubernetes-sigs/kueue/releases/download/v0.15.2/manifests.yaml
65+
kubectl apply --server-side -f https://github.com/kubernetes-sigs/kueue/releases/download/v0.15.3/manifests.yaml
6666
```
6767

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

charts/kueue/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ type: application
1616
# NOTE: Do not modify manually. In Kueue, the version and appVersion are
1717
# overridden to GIT_TAG when building the artifacts, including the helm charts,
1818
# via Makefile.
19-
version: 0.15.2
19+
version: 0.15.3
2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "v0.15.2"
24+
appVersion: "v0.15.3"

charts/kueue/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# kueue
22

3-
![Version: 0.15.2](https://img.shields.io/badge/Version-0.15.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.15.2](https://img.shields.io/badge/AppVersion-v0.15.2-informational?style=flat-square)
3+
![Version: 0.15.3](https://img.shields.io/badge/Version-0.15.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.15.3](https://img.shields.io/badge/AppVersion-v0.15.3-informational?style=flat-square)
44

55
Kueue is a set of APIs and controllers for job queueing. It is a job-level manager that decides when a job should be admitted to start (as in pods can be created) and when it should stop (as in active pods should be deleted).
66

@@ -28,7 +28,7 @@ $ helm install kueue kueue/ --create-namespace --namespace kueue-system
2828
Or use the charts pushed to `oci://registry.k8s.io/kueue/charts/kueue`:
2929

3030
```bash
31-
helm install kueue oci://registry.k8s.io/kueue/charts/kueue --version="0.15.2" --create-namespace --namespace=kueue-system
31+
helm install kueue oci://registry.k8s.io/kueue/charts/kueue --version="0.15.3" --create-namespace --namespace=kueue-system
3232
```
3333

3434
For more advanced parametrization of Kueue, we recommend using a local overrides file, passed via the `--values` flag. For example:
@@ -50,15 +50,15 @@ controllerManager:
5050
```
5151
5252
```bash
53-
helm install kueue oci://registry.k8s.io/kueue/charts/kueue --version="0.15.2" \
53+
helm install kueue oci://registry.k8s.io/kueue/charts/kueue --version="0.15.3" \
5454
--create-namespace --namespace=kueue-system \
5555
--values overrides.yaml
5656
```
5757

5858
You can also use the `--set` flag. For example, to enable a feature gate (e.g., `TopologyAwareScheduling`):
5959

6060
```bash
61-
helm install kueue oci://registry.k8s.io/kueue/charts/kueue --version="0.15.2" \
61+
helm install kueue oci://registry.k8s.io/kueue/charts/kueue --version="0.15.3" \
6262
--create-namespace --namespace=kueue-system \
6363
--set "controllerManager.featureGates[0].name=TopologyAwareScheduling" \
6464
--set "controllerManager.featureGates[0].enabled=true"

charts/kueue/README.md.gotmpl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ $ helm install kueue kueue/ --create-namespace --namespace kueue-system
3030
Or use the charts pushed to `oci://registry.k8s.io/kueue/charts/kueue`:
3131

3232
```bash
33-
helm install kueue oci://registry.k8s.io/kueue/charts/kueue --version="0.15.2" --create-namespace --namespace=kueue-system
33+
helm install kueue oci://registry.k8s.io/kueue/charts/kueue --version="0.15.3" --create-namespace --namespace=kueue-system
3434
```
3535

3636
For more advanced parametrization of Kueue, we recommend using a local overrides file, passed via the `--values` flag. For example:
@@ -52,15 +52,15 @@ controllerManager:
5252
```
5353

5454
```bash
55-
helm install kueue oci://registry.k8s.io/kueue/charts/kueue --version="0.15.2" \
55+
helm install kueue oci://registry.k8s.io/kueue/charts/kueue --version="0.15.3" \
5656
--create-namespace --namespace=kueue-system \
5757
--values overrides.yaml
5858
```
5959

6060
You can also use the `--set` flag. For example, to enable a feature gate (e.g., `TopologyAwareScheduling`):
6161

6262
```bash
63-
helm install kueue oci://registry.k8s.io/kueue/charts/kueue --version="0.15.2" \
63+
helm install kueue oci://registry.k8s.io/kueue/charts/kueue --version="0.15.3" \
6464
--create-namespace --namespace=kueue-system \
6565
--set "controllerManager.featureGates[0].name=TopologyAwareScheduling" \
6666
--set "controllerManager.featureGates[0].enabled=true"

cmd/experimental/kueue-populator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ You can also install the `kueue-populator` using the provided Helm chart.
4141

4242
```bash
4343
helm install kueue-populator oci://registry.k8s.io/kueue/charts/kueue-populator \
44-
--version 0.15.2 \
44+
--version 0.15.3 \
4545
--namespace kueue-system \
4646
--create-namespace \
4747
--wait

cmd/experimental/kueue-populator/charts/kueue-populator/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ apiVersion: v2
22
name: kueue-populator
33
description: A Helm chart for Kueue Populator setup including Kueue, LocalQueue Creator, and default resources.
44
type: application
5-
version: 0.15.2
6-
appVersion: "v0.15.2"
5+
version: 0.15.3
6+
appVersion: "v0.15.3"
77
dependencies:
88
- name: kueue
9-
version: "~0.15.2"
9+
version: "~0.15.3"
1010
repository: "file://../../../../../charts/kueue"
1111
condition: kueue.enabled

cmd/experimental/kueue-populator/charts/kueue-populator/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ You can install the chart directly from the OCI registry:
3434

3535
```bash
3636
helm install kueue-populator oci://registry.k8s.io/kueue/charts/kueue-populator \
37-
--version 0.15.2 \
37+
--version 0.15.3 \
3838
--namespace kueue-system \
3939
--create-namespace \
4040
--wait
@@ -112,7 +112,7 @@ kueuePopulator:
112112
113113
```bash
114114
helm install kueue-populator oci://registry.k8s.io/kueue/charts/kueue-populator \
115-
--version 0.15.2 \
115+
--version 0.15.3 \
116116
--namespace kueue-system \
117117
--create-namespace \
118118
--wait \
@@ -125,7 +125,7 @@ For simple configuration you may also use the minimalistic command:
125125
126126
```bash
127127
helm install kueue-populator oci://registry.k8s.io/kueue/charts/kueue-populator \
128-
--version 0.15.2 \
128+
--version 0.15.3 \
129129
--namespace kueue-system \
130130
--create-namespace \
131131
--wait \

cmd/kueueviz/INSTALL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
KueueViz can be installed using `kubectl` with the following command:
44

55
```
6-
kubectl create -f https://github.com/kubernetes-sigs/kueue/releases/download/v0.15.2/kueueviz.yaml
6+
kubectl create -f https://github.com/kubernetes-sigs/kueue/releases/download/v0.15.3/kueueviz.yaml
77
```
88
If you are using `kind` and that you don't have an `ingress` controller, you can use `port-forward` to
99
configure and run `KueueViz`:
@@ -23,7 +23,7 @@ by ensuring that `enableKueueViz` is set to `true`:
2323

2424
```
2525
helm upgrade --install kueue oci://registry.k8s.io/kueue/charts/kueue \
26-
--version="0.15.2"
26+
--version="0.15.3"
2727
--namespace kueue-system \
2828
--set enableKueueViz=true \
2929
--create-namespace
@@ -44,7 +44,7 @@ kind create cluster
4444
kind get kubeconfig > kubeconfig
4545
export KUBECONFIG=$PWD/kubeconfig
4646
helm install kueue oci://us-central1-docker.pkg.dev/k8s-staging-images/charts/kueue \
47-
--version="0.15.2" --create-namespace --namespace=kueue-system
47+
--version="0.15.3" --create-namespace --namespace=kueue-system
4848
```
4949

5050
## Build

0 commit comments

Comments
 (0)