Skip to content

Commit 8ceca05

Browse files
committed
deploy kueue from local manifests to enable easier customization
1 parent 9b75821 commit 8ceca05

File tree

3 files changed

+11876
-2
lines changed

3 files changed

+11876
-2
lines changed

hack/deploy-kueue.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export ROOT_DIR="$(dirname "$(dirname "$(readlink -fn "$0")")")"
2020

2121
echo "Deploying Kueue version $KUEUE_VERSION"
2222

23-
kubectl apply --server-side -f https://github.com/kubernetes-sigs/kueue/releases/download/${KUEUE_VERSION}/manifests.yaml
23+
kubectl apply --server-side -f $ROOT_DIR/hack/kueue/kueue-manifests-${KUEUE_VERSION}.yaml
2424

2525
# Sleep until the kueue manager is running
2626
echo "Waiting for pods in the kueue-system namespace to become ready"
@@ -36,7 +36,7 @@ echo "Attempting to define default local queue"
3636
# This won't work until kueue's webhooks are actually configured and working,
3737
# so first sleep for five seconds, then try it in a loop
3838
sleep 5
39-
until kubectl apply -f $ROOT_DIR/hack/kueue-config.yaml
39+
until kubectl apply -f $ROOT_DIR/hack/kueue/default-queues.yaml
4040
do
4141
echo -n "." && sleep 1;
4242
done

0 commit comments

Comments
 (0)