[stable/minio] added option for additional args (#17108)

added option to pass additional command line arguments to the minio binary

fixes #17075

Signed-off-by: Willi Eggeling <thewilli@gmail.com>
This commit is contained in:
Willi Eggeling
2019-09-19 05:27:00 -07:00
committed by Kubernetes Prow Robot
parent 0bedc097f8
commit 2598d1cb33
5 changed files with 13 additions and 1 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
apiVersion: v1
description: MinIO is a high performance distributed object storage server, designed for large-scale private cloud infrastructure.
name: minio
version: 2.5.14
version: 2.5.15
appVersion: RELEASE.2019-08-07T01-59-21Z
keywords:
- storage
+1
View File
@@ -103,6 +103,7 @@ The following table lists the configurable parameters of the MinIO chart and the
| `ingress.hosts` | Ingress accepted hostnames | `[]` |
| `ingress.tls` | Ingress TLS configuration | `[]` |
| `mode` | MinIO server mode (`standalone` or `distributed`) | `standalone` |
| `extraArgs` | Additional command line arguments to pass to the MinIO server | `[]` |
| `replicas` | Number of nodes (applicable only for MinIO distributed mode). Should be 4 <= x <= 32 | `4` |
| `existingSecret` | Name of existing secret with access and secret key. | `""` |
| `accessKey` | Default access key (5 to 20 characters) | `AKIAIOSFODNN7EXAMPLE` |
+4
View File
@@ -92,6 +92,10 @@ spec:
{{- end }}
{{- end }}
{{- end }}
{{- if .Values.extraArgs }}
args:
{{ toYaml .Values.extraArgs | indent 12 }}
{{- end }}
volumeMounts:
{{- if and .Values.persistence.enabled (not .Values.gcsgateway.enabled) (not .Values.azuregateway.enabled) (not .Values.s3gateway.enabled) }}
- name: export
+4
View File
@@ -74,6 +74,10 @@ spec:
http://{{ template `minio.fullname` $ }}-{{ $i }}.{{ template `minio.fullname` $ }}-svc.{{ $.Release.Namespace }}.svc.{{ $.Values.clusterDomain }}{{ $.Values.mountPath }}
{{- end }}" ]
{{ end }}
{{- if .Values.extraArgs }}
args:
{{ toYaml .Values.extraArgs | indent 12 }}
{{- end }}
volumeMounts:
{{- if .Values.persistence.enabled }}
- name: export
+3
View File
@@ -22,6 +22,9 @@ mcImage:
##
mode: standalone
## Additional arguments to pass to minio binary
extraArgs: []
## Update strategy for Deployments
DeploymentUpdate:
type: RollingUpdate