Skip to content

Commit ce0595e

Browse files
authored
prepare for 0.21.0 release (#192)
* Docs: quick start uses versioned kustomize config to deploy Kueue * release prep: bump version to 0.21.0
1 parent 7e6bf48 commit ce0595e

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ To install the latest release of AppWrapper in a Kubernetes cluster with Kueue a
3737
and configured, simply run the command:
3838

3939
```sh
40-
kubectl apply --server-side -f https://github.com/project-codeflare/appwrapper/releases/download/v0.20.2/install.yaml
40+
kubectl apply --server-side -f https://github.com/project-codeflare/appwrapper/releases/download/v0.21.0/install.yaml
4141
```
4242

4343
The controller runs in the `appwrapper-system` namespace.

docs/release_instructions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
1. Submit a housekeeping PR that does the following:
55
+ Update the AppWrapper version number in the installation section of [README.md](../README.md#Installation).
6-
+ Update the `appwrapper_version` and `kueue_version` variables in [_config.yaml](../site/_config.yaml).
6+
+ Update the `appwrapper_version` variable in [_config.yaml](../site/_config.yaml).
77

88
2. After merging the PR, create a new release tag (vX.Y.Z) and push the
99
tag to the main branch. This will trigger the `release` workflow which

site/_config.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ repository: project-codeflare/appwrapper
2525

2626
# Variables for use in pages
2727
gh_main_url: https://github.com/project-codeflare/appwrapper/blob/main
28-
appwrapper_version: v0.20.2
29-
kueue_version: v0.7.0
28+
appwrapper_version: v0.21.0
3029

3130
# Outputting
3231
permalink: /:categories/:title/

site/_pages/quick-start.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ available to you and `kubectl` is properly configured.
1111

1212
### Install Kueue
1313

14-
Install a compatible version of Kueue by executing this command:
14+
Install and configure a compatible version of Kueue by executing this command:
1515
```sh
16-
kubectl apply --server-side -f https://github.com/kubernetes-sigs/kueue/releases/download/{{ site.kueue_version }}/manifests.yaml
16+
kubectl apply --server-side -k "https://github.com/project-codeflare/appwrapper/hack/kueue-config?ref={{ site.appwrapper_version }}"
1717
```
1818

1919
Before continuing, ensure Kueue is ready by executing this command:

0 commit comments

Comments
 (0)