mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/minio] nodeport and externalips support added (#6680)
* nodeport and externalips support added * Update Chart.yaml
This commit is contained in:
committed by
k8s-ci-robot
parent
89097e7993
commit
8e313c485c
@@ -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: 1.5.0
|
||||
version: 1.6.0
|
||||
appVersion: RELEASE.2018-07-10T01-42-11Z
|
||||
keywords:
|
||||
- storage
|
||||
|
||||
@@ -28,6 +28,15 @@ spec:
|
||||
port: 9000
|
||||
targetPort: {{ .Values.service.port }}
|
||||
protocol: TCP
|
||||
{{- if (and (eq .Values.service.type "NodePort") ( .Values.service.nodePort)) }}
|
||||
nodePort: {{ .Values.service.nodePort }}
|
||||
{{- end}}
|
||||
{{- if .Values.service.externalIPs }}
|
||||
externalIPs:
|
||||
{{- range $i , $ip := .Values.service.externalIPs }}
|
||||
- {{ $ip }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
selector:
|
||||
app: {{ template "minio.name" . }}
|
||||
release: {{ .Release.Name }}
|
||||
|
||||
@@ -71,6 +71,7 @@ service:
|
||||
type: ClusterIP
|
||||
clusterIP: None
|
||||
port: 9000
|
||||
# nodePort: 31311
|
||||
annotations: {}
|
||||
# prometheus.io/scrape: 'true'
|
||||
# prometheus.io/path: '/minio/prometheus/metrics'
|
||||
|
||||
Reference in New Issue
Block a user