@@ -6,9 +6,9 @@ CREATE_CLUSTER="${CREATE_CLUSTER:-true}"
6
6
KIND_CLUSTER_NAME=" ${KIND_CLUSTER_NAME:- kind} "
7
7
LOAD_IMG_INTO_KIND=" ${LOAD_IMG_INTO_KIND:- true} "
8
8
BUILD_PLATFORM=" ${BUILD_PLATFORM:- linux/ amd64} "
9
- MINIO_HELM_VER=" ${MINIO_HELM_VER:- v6.3.1 } "
10
- # Older tags do not bundle multiple architectures. Newer tags are 5-6 times larger.
11
- MINIO_TAG=" ${MINIO_TAG:- RELEASE.2020-09-17T04-49-20Z } "
9
+ MINIO_HELM_VER=" ${MINIO_HELM_VER:- 12.10.3 } "
10
+ # Updated the minio image to a more recent version, image size might be bigger
11
+ MINIO_TAG=" ${MINIO_TAG:- 2023.11.20 } "
12
12
13
13
IMG=test/source-controller
14
14
TAG=latest
@@ -87,12 +87,11 @@ kubectl -n source-system delete -f "${ROOT_DIR}/config/testdata/helmchart-values
87
87
88
88
echo " Setup Minio"
89
89
kubectl create ns minio
90
- helm repo add minio https://helm.min.io/ --force-update
91
- helm upgrade minio minio/minio --wait -i \
90
+ helm upgrade minio oci://registry-1.docker.io/bitnamicharts/minio --wait -i \
92
91
--version " ${MINIO_HELM_VER} " \
93
92
--namespace minio \
94
- --set accessKey =myaccesskey \
95
- --set secretKey =mysecretkey \
93
+ --set auth.rootUser =myaccesskey \
94
+ --set auth.rootPassword =mysecretkey \
96
95
--set resources.requests.memory=128Mi \
97
96
--set persistence.enable=false \
98
97
--set image.tag=" ${MINIO_TAG} "
0 commit comments