File tree Expand file tree Collapse file tree 4 files changed +59
-11836
lines changed Expand file tree Collapse file tree 4 files changed +59
-11836
lines changed Original file line number Diff line number Diff line change @@ -18,9 +18,12 @@ KUEUE_VERSION=v0.6.0
18
18
19
19
export ROOT_DIR=" $( dirname " $( dirname " $( readlink -fn " $0 " ) " ) " ) "
20
20
21
- echo " Deploying Kueue version $KUEUE_VERSION "
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
22
24
23
- kubectl apply --server-side -f $ROOT_DIR /hack/kueue/kueue-manifests-${KUEUE_VERSION} .yaml
25
+ echo " Deploying Kueue version $KUEUE_VERSION "
26
+ kubectl apply --server-side -f $ROOT_DIR /hack/kueue/kueue-manifest.yaml
24
27
25
28
# Sleep until the kueue manager is running
26
29
echo " Waiting for pods in the kueue-system namespace to become ready"
30
33
done
31
34
echo " "
32
35
36
+ rm -f $ROOT_DIR /hack/kueue/kueue-manifest.yaml
37
+
33
38
# Define a default local queue in the default namespace
34
39
echo " Attempting to define default local queue"
35
40
Original file line number Diff line number Diff line change @@ -19,14 +19,15 @@ export KIND_OPT=${KIND_OPT:=" --config ${ROOT_DIR}/hack/kind-config.yaml"}
19
19
export KA_BIN=_output/bin
20
20
export WAIT_TIME=" 20s"
21
21
export KUTTL_VERSION=0.15.0
22
- export KUBEFLOW_VERSION=v1.7.0
23
22
export CERTMANAGER_VERSION=v1.13.3
23
+ export KUBEFLOW_VERSION=v1.7.0
24
24
DUMP_LOGS=" true"
25
25
26
- # These are images used by the e2e tests.
26
+ # These are small images used by the e2e tests.
27
27
# Pull and kind load to avoid long delays during testing
28
28
export IMAGE_ECHOSERVER=" quay.io/project-codeflare/echo-server:1.0"
29
29
export IMAGE_BUSY_BOX_LATEST=" quay.io/project-codeflare/busybox:latest"
30
+ export IMAGE_ALPINE_310=" docker.io/alpine:3.10"
30
31
31
32
function update_test_host {
32
33
@@ -114,7 +115,7 @@ function check_prerequisites {
114
115
}
115
116
116
117
function pull_images {
117
- for image in ${IMAGE_ECHOSERVER} ${IMAGE_BUSY_BOX_LATEST}
118
+ for image in ${IMAGE_ECHOSERVER} ${IMAGE_BUSY_BOX_LATEST} ${IMAGE_ALPINE_310}
118
119
do
119
120
docker pull $image
120
121
if [ $? -ne 0 ]
@@ -137,7 +138,7 @@ function kind_up_cluster {
137
138
fi
138
139
CLUSTER_STARTED=" true"
139
140
140
- for image in ${IMAGE_ECHOSERVER} ${IMAGE_BUSY_BOX_LATEST}
141
+ for image in ${IMAGE_ECHOSERVER} ${IMAGE_BUSY_BOX_LATEST} ${IMAGE_ALPINE_310}
141
142
do
142
143
kind load docker-image ${image} ${CLUSTER_CONTEXT}
143
144
if [ $? -ne 0 ]
You can’t perform that action at this time.
0 commit comments