[stable/kibana] Added value service.externalIPs (#3589)

This commit is contained in:
Alexey Remizov
2018-02-09 12:07:52 -08:00
committed by k8s-ci-robot
parent b8658d6494
commit a8a95109c6
4 changed files with 11 additions and 1 deletions
+1 -1
View File
@@ -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
+1
View File
@@ -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 | `[]`
+4
View File
@@ -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 }}
+5
View File
@@ -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