File tree Expand file tree Collapse file tree 5 files changed +6
-59
lines changed Expand file tree Collapse file tree 5 files changed +6
-59
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ require (
99 k8s.io/apimachinery v0.29.1
1010 k8s.io/client-go v0.29.1
1111 sigs.k8s.io/controller-runtime v0.17.0
12- sigs.k8s.io/kueue v0.6.0
12+ sigs.k8s.io/kueue v0.6.1
1313 sigs.k8s.io/yaml v1.4.0
1414)
1515
Original file line number Diff line number Diff line change @@ -225,8 +225,8 @@ sigs.k8s.io/jobset v0.3.1 h1:GGUH6CNDgsVOip+oz6uiMYg5Tt50wHTmIgmeaTolQ2g=
225225sigs.k8s.io/jobset v0.3.1 /go.mod h1:x3pw53wKIxq5fFz7/WacV1Exd9fTHa530szVXBdo9OE =
226226sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd h1:EDPBXCAspyGV4jQlpZSudPeMmr1bNJefnuqLsRAsHZo =
227227sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd /go.mod h1:B8JuhiUyNFVKdsE8h686QcCxMaH6HrOAZj4vswFpcB0 =
228- sigs.k8s.io/kueue v0.6.0 h1:D1nA1OcxWBBQZf0SkYmy0qJwIIvfjljgcu+YcByc/xI =
229- sigs.k8s.io/kueue v0.6.0 /go.mod h1:j+TnfTh3hMnxRxrghZfe+M7lAbN8bzYSkD4i7FeChyM =
228+ sigs.k8s.io/kueue v0.6.1 h1:/0Q+3/V2dLXwXCVHEgUeeoLRlwiorNSNoBmVjzf9/RY =
229+ sigs.k8s.io/kueue v0.6.1 /go.mod h1:j+TnfTh3hMnxRxrghZfe+M7lAbN8bzYSkD4i7FeChyM =
230230sigs.k8s.io/structured-merge-diff/v4 v4.4.1 h1:150L+0vs/8DA78h1u02ooW1/fFq/Lwr+sGiqlzvrtq4 =
231231sigs.k8s.io/structured-merge-diff/v4 v4.4.1 /go.mod h1:N8hJocpFajUSSeSJ9bOZ77VzejKZaXsTtZo4/u7Io08 =
232232sigs.k8s.io/yaml v1.4.0 h1:Mk1wCc2gy/F0THH0TAp1QYyJNzRm2KCLy3o5ASXVI5E =
File renamed without changes.
Original file line number Diff line number Diff line change 1414
1515# Installs a kueue release onto an existing cluster
1616
17- KUEUE_VERSION=v0.6.0
17+ KUEUE_VERSION=v0.6.1
1818
1919export ROOT_DIR=" $( dirname " $( dirname " $( readlink -fn " $0 " ) " ) " ) "
2020
21- echo " Downloading and patching Kueue ${KUEUE_VERSION} manifests"
22- wget https://github.com/kubernetes-sigs/kueue/releases/download/${KUEUE_VERSION} /manifests.yaml -O $ROOT_DIR /hack/kueue/kueue-manifest.yaml
23- patch -p 0 $ROOT_DIR /hack/kueue/kueue-manifest.yaml < $ROOT_DIR /hack/kueue/patch-01-v0.6.0.txt
24-
2521echo " Deploying Kueue version $KUEUE_VERSION "
26- kubectl apply --server-side -f $ROOT_DIR /hack/kueue/kueue-manifest .yaml
22+ kubectl apply --server-side -f https://github.com/kubernetes-sigs/kueue/releases/download/ ${KUEUE_VERSION} /manifests .yaml
2723
2824# Sleep until the kueue manager is running
2925echo " Waiting for pods in the kueue-system namespace to become ready"
3329done
3430echo " "
3531
36- rm -f $ROOT_DIR /hack/kueue/kueue-manifest.yaml
37-
3832# Define a default local queue in the default namespace
3933echo " Attempting to define default local queue"
4034
4135# This won't work until kueue's webhooks are actually configured and working,
4236# so first sleep for five seconds, then try it in a loop
4337sleep 5
44- until kubectl apply -f $ROOT_DIR /hack/kueue/ default-queues.yaml
38+ until kubectl apply -f $ROOT_DIR /hack/default-queues.yaml
4539do
4640 echo -n " ." && sleep 1;
4741done
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments