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 (
9
9
k8s.io/apimachinery v0.29.1
10
10
k8s.io/client-go v0.29.1
11
11
sigs.k8s.io/controller-runtime v0.17.0
12
- sigs.k8s.io/kueue v0.6.0
12
+ sigs.k8s.io/kueue v0.6.1
13
13
sigs.k8s.io/yaml v1.4.0
14
14
)
15
15
Original file line number Diff line number Diff line change @@ -225,8 +225,8 @@ sigs.k8s.io/jobset v0.3.1 h1:GGUH6CNDgsVOip+oz6uiMYg5Tt50wHTmIgmeaTolQ2g=
225
225
sigs.k8s.io/jobset v0.3.1 /go.mod h1:x3pw53wKIxq5fFz7/WacV1Exd9fTHa530szVXBdo9OE =
226
226
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd h1:EDPBXCAspyGV4jQlpZSudPeMmr1bNJefnuqLsRAsHZo =
227
227
sigs.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 =
230
230
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 h1:150L+0vs/8DA78h1u02ooW1/fFq/Lwr+sGiqlzvrtq4 =
231
231
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 /go.mod h1:N8hJocpFajUSSeSJ9bOZ77VzejKZaXsTtZo4/u7Io08 =
232
232
sigs.k8s.io/yaml v1.4.0 h1:Mk1wCc2gy/F0THH0TAp1QYyJNzRm2KCLy3o5ASXVI5E =
File renamed without changes.
Original file line number Diff line number Diff line change 14
14
15
15
# Installs a kueue release onto an existing cluster
16
16
17
- KUEUE_VERSION=v0.6.0
17
+ KUEUE_VERSION=v0.6.1
18
18
19
19
export ROOT_DIR=" $( dirname " $( dirname " $( readlink -fn " $0 " ) " ) " ) "
20
20
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
-
25
21
echo " 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
27
23
28
24
# Sleep until the kueue manager is running
29
25
echo " Waiting for pods in the kueue-system namespace to become ready"
33
29
done
34
30
echo " "
35
31
36
- rm -f $ROOT_DIR /hack/kueue/kueue-manifest.yaml
37
-
38
32
# Define a default local queue in the default namespace
39
33
echo " Attempting to define default local queue"
40
34
41
35
# This won't work until kueue's webhooks are actually configured and working,
42
36
# so first sleep for five seconds, then try it in a loop
43
37
sleep 5
44
- until kubectl apply -f $ROOT_DIR /hack/kueue/ default-queues.yaml
38
+ until kubectl apply -f $ROOT_DIR /hack/default-queues.yaml
45
39
do
46
40
echo -n " ." && sleep 1;
47
41
done
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments