Skip to content

Commit

Permalink
prepare for 0.21.0 release (#192)
Browse files Browse the repository at this point in the history
* Docs: quick start uses versioned kustomize config to deploy Kueue
* release prep: bump version to 0.21.0
  • Loading branch information
dgrove-oss authored Jul 9, 2024
1 parent 7e6bf48 commit ce0595e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ To install the latest release of AppWrapper in a Kubernetes cluster with Kueue a
and configured, simply run the command:

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

The controller runs in the `appwrapper-system` namespace.
Expand Down
2 changes: 1 addition & 1 deletion docs/release_instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

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

2. After merging the PR, create a new release tag (vX.Y.Z) and push the
tag to the main branch. This will trigger the `release` workflow which
Expand Down
3 changes: 1 addition & 2 deletions site/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ repository: project-codeflare/appwrapper

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

# Outputting
permalink: /:categories/:title/
Expand Down
4 changes: 2 additions & 2 deletions site/_pages/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ available to you and `kubectl` is properly configured.

### Install Kueue

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

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

0 comments on commit ce0595e

Please sign in to comment.