File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212 "cilium" : " none"
1313 },
1414 "ghcr.io/guiyomh/features/golangci-lint:0" : {},
15- "ghcr.io/devcontainers-contrib /features/kubectx-kubens:1" : {},
15+ "ghcr.io/devcontainers-extra /features/kubectx-kubens:1" : {},
1616 "ghcr.io/dhoeric/features/stern:1" : {}
1717 },
1818
Original file line number Diff line number Diff line change 157157 datasourceTemplate : 'docker' ,
158158 versioningTemplate : 'loose'
159159 } ,
160+ {
161+ customType : 'regex' ,
162+ fileMatch : [
163+ '^tests\\/utils\\/minio\\/minio\\.go$' ,
164+ ] ,
165+ matchStrings : [
166+ 'minioImage = "(?<depName>.+?):(?<currentValue>.*?)"\\n' ,
167+ 'minioClientImage = "(?<depName>.+?):(?<currentValue>.*?)"\\n' ,
168+ ] ,
169+ datasourceTemplate : 'docker' ,
170+ versioningTemplate : 'regex' ,
171+ extractVersionTemplate : '^RELEASE\\.(?<major>\\d+)-(?<minor>\\d+)-(?<patch>\\d+)T.*Z$' ,
172+ } ,
160173 ] ,
161174 packageRules : [
162175 {
266279 separateMajorMinor : false ,
267280 pinDigests : false ,
268281 matchPackageNames : [
269- 'vmware-tanzu{/,}**'
282+ 'vmware-tanzu{/,}**' ,
283+ 'minio{/,}**'
270284 ]
271285 } ,
272286 {
Original file line number Diff line number Diff line change @@ -49,8 +49,10 @@ import (
4949)
5050
5151const (
52- minioImage = "minio/minio:RELEASE.2025-05-24T17-08-30Z"
53- minioClientImage = "minio/mc:RELEASE.2025-05-21T01-59-54Z"
52+ // minioImage is the image used to run a MinIO server
53+ minioImage = "minio/minio:RELEASE.2025-04-22T22-12-26Z"
54+ // minioClientImage is the image used to run a MinIO client
55+ minioClientImage = "minio/mc:RELEASE.2025-04-16T18-13-26Z"
5456)
5557
5658// Env contains all the information related or required by MinIO deployment and
You can’t perform that action at this time.
0 commit comments