[stable/grafana] Added value server.service.externalIPs (#2880)

[stable/grafana] Added value server.service.externalIPs
This commit is contained in:
Alexey Remizov
2017-12-09 08:07:35 +01:00
committed by Reinhard Nägele
parent 5d537dc0d7
commit bc49ea39fb
4 changed files with 12 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: grafana
version: 0.5.0
version: 0.5.1
description: The leading tool for querying and visualizing time series and metrics.
home: https://grafana.net
icon: https://raw.githubusercontent.com/grafana/grafana/master/public/img/logo_transparent_400x.png
+1
View File
@@ -47,5 +47,6 @@ The command removes all the Kubernetes components associated with the chart and
| `server.service.loadBalancerIP` | IP to assign to load balancer | null |
| `server.service.loadBalancerSourceRanges` | List of IP CIDRs allowed access | null |
| `server.service.nodePort` | For service type "NodePort" | null |
| `server.service.externalIPs` | External IP addresses | null |
| `server.service.type` | ClusterIP, NodePort, or LoadBalancer| ClusterIP |
| `server.setDatasource.enabled` | Creates grafana datasource with job | false |
+4
View File
@@ -22,6 +22,10 @@ spec:
{{- if .Values.server.service.nodePort }}
nodePort: {{ .Values.server.service.nodePort }}
{{- end }}
{{- end }}
{{- if .Values.server.service.externalIPs }}
externalIPs:
{{ toYaml .Values.server.service.externalIPs | indent 4 }}
{{- end }}
selector:
app: {{ template "grafana.fullname" . }}
+6
View File
@@ -138,6 +138,12 @@ server:
## Default: nil
# nodePort: 30000
## External IP addresses of service
## Default: nil
##
# externalIPs:
# - 192.168.0.1
## Grafana local config path
## Default '/etc/grafana'
##