mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/kibana] Added value service.externalIPs (#3589)
This commit is contained in:
committed by
k8s-ci-robot
parent
b8658d6494
commit
a8a95109c6
@@ -1,5 +1,5 @@
|
||||
name: kibana
|
||||
version: 0.2.1
|
||||
version: 0.2.2
|
||||
appVersion: 6.0.0
|
||||
description: Kibana is an open source data visualization plugin for Elasticsearch
|
||||
icon: https://raw.githubusercontent.com/elastic/kibana/master/src/ui/public/icons/kibana-color.svg
|
||||
|
||||
@@ -53,6 +53,7 @@ Parameter | Description | Default
|
||||
`resources` | pod resource requests & limits | `{}`
|
||||
`service.externalPort` | external port for the service | `443`
|
||||
`service.internalPort` | internal port for the service | `4180`
|
||||
`service.externalIPs` | external IP addresses | None:
|
||||
`service.type` | type of service | `ClusterIP`
|
||||
`tolerations` | List of node taints to tolerate | `[]`
|
||||
|
||||
|
||||
@@ -13,6 +13,10 @@ spec:
|
||||
- port: {{ .Values.service.externalPort }}
|
||||
targetPort: {{ .Values.service.internalPort }}
|
||||
protocol: TCP
|
||||
{{- if .Values.service.externalIPs }}
|
||||
externalIPs:
|
||||
{{ toYaml .Values.service.externalIPs | indent 4 }}
|
||||
{{- end }}
|
||||
selector:
|
||||
app: {{ template "kibana.name" . }}
|
||||
release: {{ .Release.Name }}
|
||||
|
||||
@@ -17,6 +17,11 @@ service:
|
||||
type: ClusterIP
|
||||
externalPort: 443
|
||||
internalPort: 5601
|
||||
## External IP addresses of service
|
||||
## Default: nil
|
||||
##
|
||||
# externalIPs:
|
||||
# - 192.168.0.1
|
||||
|
||||
ingress:
|
||||
enabled: false
|
||||
|
||||
Reference in New Issue
Block a user