@@ -10,6 +10,15 @@ function get_image_tag() {
1010}
1111
1212function build_images() {
13+ minio_e2e_img=local/minio-e2e:latest
14+ oss_emulator_img=${IMG_REPO} /oss-emulator:e2e
15+ csi_registrar_src_img=registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.14.0
16+ csi_registrar_img=${IMG_REPO} /csi-node-driver-registrar:v2.14.0
17+ alluxio_runtime_img=alluxio/alluxio-dev:2.9.0
18+ alluxio_ufs_img=nginx:1.27-alpine
19+ alluxio_init_img=fluidcloudnative/init-users:v0.9.0
20+ jindo_smartdata_img=registry-cn-hongkong.ack.aliyuncs.com/acs/smartdata:6.9.1-202509151826
21+ jindo_fuse_img=registry-cn-hongkong.ack.aliyuncs.com/acs/jindo-fuse:6.9.1-202509151826
1322 images=(
1423 ${IMG_REPO} /dataset-controller:${IMAGE_TAG}
1524 ${IMG_REPO} /application-controller:${IMAGE_TAG}
@@ -24,9 +33,31 @@ function build_images() {
2433 ${IMG_REPO} /fluid-csi:${IMAGE_TAG}
2534 ${IMG_REPO} /fluid-webhook:${IMAGE_TAG}
2635 ${IMG_REPO} /fluid-crd-upgrader:${IMAGE_TAG}
36+ ${minio_e2e_img}
37+ ${oss_emulator_img}
38+ ${csi_registrar_img}
39+ ${alluxio_runtime_img}
40+ ${alluxio_ufs_img}
41+ ${alluxio_init_img}
42+ ${jindo_smartdata_img}
43+ ${jindo_fuse_img}
2744 )
2845
2946 make docker-build-all
47+ tmpdir=$( mktemp -d)
48+ cat > ${tmpdir} /Dockerfile << 'EOF '
49+ FROM minio/minio:latest
50+ EOF
51+ docker build -t ${minio_e2e_img} ${tmpdir}
52+ rm -rf ${tmpdir}
53+ docker build -t ${oss_emulator_img} test/gha-e2e/jindo/oss-emulator
54+ docker pull ${csi_registrar_src_img}
55+ docker tag ${csi_registrar_src_img} ${csi_registrar_img}
56+ docker pull ${alluxio_runtime_img}
57+ docker pull ${alluxio_ufs_img}
58+ docker pull ${alluxio_init_img}
59+ docker pull ${jindo_smartdata_img}
60+ docker pull ${jindo_fuse_img}
3061
3162 for img in ${images[@]} ; do
3263 echo " Loading image $img to kind cluster..."
0 commit comments