Skip to content

Commit

Permalink
upgrade 3rd-party components
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Shmulevich <[email protected]>
  • Loading branch information
dmitsh committed Jan 24, 2025
1 parent 3d1e1cc commit acb268b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion docs/examples/jobset/jobset.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@

Install [JobSet API](https://github.com/kubernetes-sigs/jobset) in your cluster:
```shell
kubectl apply --server-side -f https://github.com/kubernetes-sigs/jobset/releases/download/v0.5.2/manifests.yaml
JOBSET_VERSION=v0.7.3
kubectl apply --server-side -f https://github.com/kubernetes-sigs/jobset/releases/download/${JOBSET_VERSION}/manifests.yaml
```

Run a jobset with workers:
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/kueue/kueue.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Install `kueue` by following these [instructions](https://kueue.sigs.k8s.io/docs/installation/):

```bash
KUEUE_VERSION=v0.9.0
KUEUE_VERSION=v0.10.1
kubectl apply --server-side -f https://github.com/kubernetes-sigs/kueue/releases/download/${KUEUE_VERSION}/manifests.yaml

kubectl apply -f charts/overrides/kueue/priority.yaml
Expand Down
4 changes: 2 additions & 2 deletions scripts/env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ function deploy_prometheus() {
#

# https://github.com/kubernetes-sigs/jobset
JOBSET_VERSION=v0.7.0
JOBSET_VERSION=v0.7.3

function deploy_jobset() {
printGreen Deploying jobset
Expand All @@ -137,7 +137,7 @@ function deploy_jobset() {
}

# https://github.com/kubernetes-sigs/kueue
KUEUE_VERSION=v0.9.0
KUEUE_VERSION=v0.10.1

function deploy_kueue() {
printGreen Deploying kueue
Expand Down

0 comments on commit acb268b

Please sign in to comment.