@@ -6,16 +6,14 @@ 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} "
12
10
13
11
IMG=test/source-controller
14
12
TAG=latest
15
13
16
- MC_RELEASE=mc.RELEASE.2021-12-16T23-38-39Z
17
- MC_AMD64_SHA256=d14302bbdaa180a073c1627ff9fbf55243221e33d47e32df61a950f635810978
18
- MC_ARM64_SHA256=00791995bf8d102e3159e23b3af2f5e6f4c784fafd88c60161dcf3f0169aa217
14
+ MC_RELEASE=mc.RELEASE.2023-11-20T16-30-59Z
15
+ MC_AMD64_SHA256=fdd901a5169d676f32483f9a2de977b7ff3a4fe83e254dcbc35e7a1545591565
16
+ MC_ARM64_SHA256=09816180f560875d344dc436ed4ec1348b3ff0c836ae9cf0415fef602489cc11
19
17
20
18
ROOT_DIR=" $( git rev-parse --show-toplevel) "
21
19
BUILD_DIR=" ${ROOT_DIR} /build"
@@ -87,15 +85,14 @@ kubectl -n source-system delete -f "${ROOT_DIR}/config/testdata/helmchart-values
87
85
88
86
echo " Setup Minio"
89
87
kubectl create ns minio
90
- helm repo add minio https://helm.min.io/ --force-update
91
- helm upgrade minio minio/minio --wait -i \
88
+ helm upgrade minio oci://registry-1.docker.io/bitnamicharts/minio --wait -i \
92
89
--version " ${MINIO_HELM_VER} " \
90
+ --timeout 10m0s \
93
91
--namespace minio \
94
- --set accessKey =myaccesskey \
95
- --set secretKey =mysecretkey \
92
+ --set auth.rootUser =myaccesskey \
93
+ --set auth.rootPassword =mysecretkey \
96
94
--set resources.requests.memory=128Mi \
97
- --set persistence.enable=false \
98
- --set image.tag=" ${MINIO_TAG} "
95
+ --set persistence.enable=false
99
96
kubectl -n minio port-forward svc/minio 9000:9000 & > /dev/null &
100
97
101
98
sleep 2
0 commit comments