You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`image.tag`| MinIO image tag (immutable tags are recommended) |`"RELEASE.2024-08-17T01-24-54Z"`|
84
-
|`image.useCpuV1`| image.useCpuV1 Use the Minio image tags suitable for old cpus (see https://github.com/minio/minio/issues/18365)|`false`|
85
-
|`image.tagCpuV1`| image.useCpuV1 Use the Minio image tags suitable for old cpus (see https://github.com/minio/minio/issues/18365)|`RELEASE.2025-09-07T16-13-09Z-cpuv1@sha256:13582eff79c6605a2d315bdd0e70164142ea7e98fc8411e9e10d089502a6d883`|
|`image.tag`| MinIO image tag (immutable tags are recommended) |`"RELEASE.2024-08-17T01-24-54Z"`|
84
+
|`image.useCpuV1`| image.useCpuV1 Use the Minio image tags suitable for old cpus (see https://github.com/minio/minio/issues/18365)|`false`|
85
+
|`image.tagCpuV1`| image.useCpuV1 Use the Minio image tags suitable for old cpus (see https://github.com/minio/minio/issues/18365)|`RELEASE.2025-09-07T16-13-09Z-cpuv1@sha256:13582eff79c6605a2d315bdd0e70164142ea7e98fc8411e9e10d089502a6d883`|
|`config.region`| MinIO server default region |`""`|
103
+
|`config.browserEnabled`| Enable MinIO web browser |`true`|
104
+
|`config.domain`| MinIO server domain |`""`|
105
+
|`config.serverUrl`| MinIO server URL for console |`""`|
106
+
|`config.minioOpts`| String of parameteres to use when starting the MinIO Server (example: '--console-address=":9001"') |`""`|
107
+
|`config.minioVolumes`| The directories or drives the minio server uses as the storage backend (example: '/mnt/drive1/minio') |`""`|
108
+
|`config.minioConfigEnvFile`| Specifies the full path to the file the MinIO server process uses for loading environment variables |`""`|
109
+
|`config.minioScannerSpeed`| Manage the maximum wait period for the scanner when balancing MinIO read/write performance to scanner processes (fastest, fast, default, slow, slowest) |`""`|
110
+
|`config.minioCompressionEnabled`| Set to on to enable data compression for new objects. Defaults to off. |`""`|
111
+
|`config.minioCompressionAllowEncryption`| Set to on to encrypt objects after compressing them. Defaults to off. |`""`|
112
+
|`config.minioCompressionExtensions`| Comma-separated list of the file extensions to compress. Setting a new list of file extensions replaces the previously configured list. Defaults to "*" |`""`|
113
+
|`config.minioCompressionMimeTypes`| Comma-separated list of the MIME types to compress. Setting a new list of types replaces the previously configured list. Defaults to "text/*, application/json, application/xml, binary/octet-stream" |`""`|
114
+
|`config.extraEnvVars`| Extra environment variables to be set on MinIO containers |`[]`|
107
115
108
116
### Deployment configuration
109
117
@@ -215,9 +223,9 @@ The following table lists the configurable parameters of the MinIO chart and the
Copy file name to clipboardExpand all lines: charts/minio/values.yaml
+17Lines changed: 17 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,23 @@ config:
53
53
domain: ""
54
54
## @param config.serverUrl MinIO server URL for console
55
55
serverUrl: ""
56
+
## @param config.minioOpts String of parameteres to use when starting the MinIO Server (example: '--console-address=":9001"')
57
+
minioOpts: ""
58
+
## @param config.minioVolumes The directories or drives the minio server uses as the storage backend (example: '/mnt/drive1/minio')
59
+
minioVolumes: ""
60
+
## @param config.minioConfigEnvFile Specifies the full path to the file the MinIO server process uses for loading environment variables
61
+
minioConfigEnvFile: ""
62
+
## @param config.minioScannerSpeed Manage the maximum wait period for the scanner when balancing MinIO read/write performance to scanner processes (fastest, fast, default, slow, slowest)
63
+
minioScannerSpeed: ""
64
+
## @param config.minioCompressionEnabled Set to on to enable data compression for new objects. Defaults to off.
65
+
minioCompressionEnabled: ""
66
+
## @param config.minioCompressionAllowEncryption Set to on to encrypt objects after compressing them. Defaults to off.
67
+
minioCompressionAllowEncryption: ""
68
+
## @param config.minioCompressionExtensions Comma-separated list of the file extensions to compress. Setting a new list of file extensions replaces the previously configured list. Defaults to "*"
69
+
minioCompressionExtensions: ""
70
+
## @param config.minioCompressionMimeTypes Comma-separated list of the MIME types to compress. Setting a new list of types replaces the previously configured list. Defaults to "text/*, application/json, application/xml, binary/octet-stream"
71
+
minioCompressionMimeTypes: ""
72
+
56
73
## @param config.extraEnvVars Extra environment variables to be set on MinIO containers
0 commit comments