mirror of
https://github.com/minio/minio.git
synced 2025-01-11 23:13:23 -05:00
helm: add extraContainer (#15660)
Signed-off-by: Philipp Born <git@pborn.eu>
This commit is contained in:
parent
f7db12c7ef
commit
344ae9f84e
@ -163,6 +163,13 @@ spec:
|
|||||||
{{- end}}
|
{{- end}}
|
||||||
resources:
|
resources:
|
||||||
{{ toYaml .Values.resources | indent 12 }}
|
{{ toYaml .Values.resources | indent 12 }}
|
||||||
|
{{- with .Values.extraContainers }}
|
||||||
|
{{- if eq (typeOf .) "string" }}
|
||||||
|
{{- tpl . $ | nindent 8 }}
|
||||||
|
{{- else }}
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
{{- with .Values.nodeSelector }}
|
{{- with .Values.nodeSelector }}
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
{{ toYaml . | indent 8 }}
|
{{ toYaml . | indent 8 }}
|
||||||
|
@ -181,6 +181,13 @@ spec:
|
|||||||
{{- end}}
|
{{- end}}
|
||||||
resources:
|
resources:
|
||||||
{{ toYaml .Values.resources | indent 12 }}
|
{{ toYaml .Values.resources | indent 12 }}
|
||||||
|
{{- with .Values.extraContainers }}
|
||||||
|
{{- if eq (typeOf .) "string" }}
|
||||||
|
{{- tpl . $ | nindent 8 }}
|
||||||
|
{{- else }}
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
{{- with .Values.nodeSelector }}
|
{{- with .Values.nodeSelector }}
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
{{ toYaml . | indent 8 }}
|
{{ toYaml . | indent 8 }}
|
||||||
|
@ -52,6 +52,9 @@ extraVolumes: []
|
|||||||
## Additional volumeMounts to minio container
|
## Additional volumeMounts to minio container
|
||||||
extraVolumeMounts: []
|
extraVolumeMounts: []
|
||||||
|
|
||||||
|
## Additional sidecar containers
|
||||||
|
extraContainers: []
|
||||||
|
|
||||||
## Internal port number for MinIO S3 API container
|
## Internal port number for MinIO S3 API container
|
||||||
## Change service.port to change external port number
|
## Change service.port to change external port number
|
||||||
minioAPIPort: "9000"
|
minioAPIPort: "9000"
|
||||||
|
Loading…
Reference in New Issue
Block a user