Skip to content

Commit cc50889

Browse files
authored
Prepare for the 0.12.1 release (#5389)
1 parent 616d5a3 commit cc50889

File tree

6 files changed

+20
-6
lines changed

6 files changed

+20
-6
lines changed

CHANGELOG/CHANGELOG-0.12.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## v0.12.1
2+
3+
Changes since `v0.12.0`:
4+
5+
## Urgent Upgrade Notes
6+
7+
### (No, really, you MUST read this before you upgrade)
8+
9+
- Move the API Priority and Fairness configuration for the visibility endpoint to a separate manifest file.
10+
This fixes the installation issues on GKE.
11+
12+
If you relied on the configuration in 0.12.0, then consider installing it as opt-in from
13+
the visibility-apf.yaml manifest. (#5380, @mbobrovskyi)
14+
115
## v0.12.0
216

317
> [!NOTE]

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ LD_FLAGS += -X '$(version_pkg).GitCommit=$(GIT_COMMIT)'
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.12.0
94+
RELEASE_VERSION=v0.12.1
9595
RELEASE_BRANCH=release-0.12
9696
# Version used form Helm which is not using the leading "v"
9797
CHART_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.12.0/manifests.yaml
65+
kubectl apply --server-side -f https://github.com/kubernetes-sigs/kueue/releases/download/v0.12.1/manifests.yaml
6666
```
6767

6868
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
@@ -21,4 +21,4 @@ version: 0.1.0
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.12.0"
24+
appVersion: "v0.12.1"

charts/kueue/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ $ helm install kueue kueue/ --create-namespace --namespace kueue-system
3737
Or use the charts pushed to `oci://registry.k8s.io/kueue/charts/kueue`:
3838

3939
```bash
40-
helm install kueue oci://registry.k8s.io/kueue/charts/kueue --version="0.12.0" --create-namespace --namespace=kueue-system
40+
helm install kueue oci://registry.k8s.io/kueue/charts/kueue --version="0.12.1" --create-namespace --namespace=kueue-system
4141
```
4242

4343
##### Verify that controller pods are running properly.

site/hugo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,10 @@ 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.12.0"
93+
version = "v0.12.1"
9494

9595
# Version of Kueue without the leading "v", as used for Helm charts.
96-
chart_version = "0.12.0"
96+
chart_version = "0.12.1"
9797

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

0 commit comments

Comments
 (0)