Skip to content

Commit eb01ce9

Browse files
Prepare release v0.6.1 (#1847)
Change-Id: I7cc659b2b013cd4a0b907b0e3002b877dac2e4ae
1 parent 2e60870 commit eb01ce9

File tree

5 files changed

+26
-4
lines changed

5 files changed

+26
-4
lines changed

CHANGELOG/CHANGELOG-0.6.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## v0.6.1
2+
3+
Changes Since `v0.6.0`:
4+
5+
### Feature
6+
7+
- Added MultiKueue worker connection monitoring and reconnect. (#1809, @trasc)
8+
- The Failed pods in a pod-group are finalized once a replacement pods are created. (#1801, @trasc)
9+
10+
### Bug or Regression
11+
12+
- Exclude Pod labels, preemptionPolicy and container images when determining whether pods in a pod group have the same shape. (#1760, @alculquicondor)
13+
- Fix incorrect quota management when lendingLimit enabled in preemption (#1826, @kerthcet, @B1F030)
14+
- Fix the configuration for the number of reconcilers for the Pod integration. It was only reconciling one group at a time. (#1837, @alculquicondor)
15+
- Kueue visibility API is no longer installed by default. Users can install it via helm or applying the visibility-api.yaml artifact. (#1764, @trasc)
16+
- WaitForPodsReady: Fix a bug that the requeueState isn't reset. (#1843, @tenzen-y)
17+
18+
### Other (Cleanup or Flake)
19+
20+
- Avoid API calls for admission attempts when Workload already has condition Admitted=false (#1845, @alculquicondor)
21+
- Skip requeueing of Workloads when there is a status update for a ClusterQueue, saving on API calls for Workloads that were already attempted for admission. (#1832, @alculquicondor)
22+
123
## v0.6.0
224

325
Changes since `v0.5.0`:

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ LD_FLAGS += -X '$(version_pkg).GitCommit=$(shell git rev-parse HEAD)'
8888

8989
# Update these variables when preparing a new release or a release branch.
9090
# Then run `make prepare-release-branch`
91-
RELEASE_VERSION=v0.6.0
91+
RELEASE_VERSION=v0.6.1
9292
RELEASE_BRANCH=release-0.6
9393

9494
.PHONY: all

README.md

+1-1
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.6.0/manifests.yaml
60+
kubectl apply --server-side -f https://github.com/kubernetes-sigs/kueue/releases/download/v0.6.1/manifests.yaml
6161
```
6262

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

charts/kueue/Chart.yaml

+1-1
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.6.0"
21+
appVersion: "v0.6.1"

site/config.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ ignoreFiles = []
9292
# The major.minor version tag for the version of the docs represented in this
9393
# branch of the repository. Used in the "version-banner" partial to display a
9494
# version number for this doc set.
95-
version = "v0.6.0"
95+
version = "v0.6.1"
9696

9797
# Flag used in the "version-banner" partial to decide whether to display a
9898
# banner on every page indicating that this is an archived version of the docs.

0 commit comments

Comments
 (0)