mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/grafana] Added value server.service.externalIPs (#2880)
[stable/grafana] Added value server.service.externalIPs
This commit is contained in:
committed by
Reinhard Nägele
parent
5d537dc0d7
commit
bc49ea39fb
@@ -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
|
||||
|
||||
@@ -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 |
|
||||
|
||||
@@ -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" . }}
|
||||
|
||||
@@ -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'
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user