Skip to content

Commit a91f927

Browse files
committed
minio: Add Docker registry mirror support via Kconfig
Enable MinIO to automatically use the local Docker registry mirror when KDEVOPS_DOCKER_MIRROR is enabled, following the same pattern established for vLLM. This provides faster container image pulls and offline operation support for MinIO S3 storage benchmarking workflows. The container image URL is automatically prefixed with localhost:5000 when the docker mirror is detected, eliminating the need for runtime Ansible variable manipulation. Generated-by: Claude AI Signed-off-by: Luis Chamberlain <[email protected]>
1 parent 4fb1873 commit a91f927

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

workflows/minio/Kconfig.docker

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
config MINIO_CONTAINER_IMAGE_STRING
22
string "MinIO container image"
33
output yaml
4+
default "localhost:5000/minio/minio:RELEASE.2024-01-16T16-07-38Z" if KDEVOPS_DOCKER_MIRROR
45
default "minio/minio:RELEASE.2024-01-16T16-07-38Z"
56
help
67
The MinIO container image to use for S3 storage benchmarking.
78
Using a recent stable release with performance improvements.
89

10+
When KDEVOPS_DOCKER_MIRROR is enabled, the image URL is automatically
11+
prefixed with the local registry address for faster pulls.
12+
913
config MINIO_CONTAINER_NAME
1014
string "The local MinIO container name"
1115
default "minio-warp-server"

0 commit comments

Comments
 (0)