[bitnami/kibana] Add custom labels option to the service in Kibana chart (#8047)

* Add custom labels option to the service in Kibana chart

* Generate README through readme-generator-for-helm

Co-authored-by: Abdullah Tariq <abdullah.tariq@flixbus.com>
This commit is contained in:
Abdullah Tariq
2021-11-09 09:39:55 +01:00
committed by GitHub
co-authored by Abdullah Tariq
parent 5d03d2a9a9
commit 7d4deeb948
4 changed files with 8 additions and 1 deletions
+1 -1
View File
@@ -25,4 +25,4 @@ name: kibana
sources:
- https://github.com/bitnami/bitnami-docker-kibana
- https://www.elastic.co/products/kibana
version: 9.0.10
version: 9.1.0
+1
View File
@@ -125,6 +125,7 @@ The command removes all the Kubernetes components associated with the chart and
| `service.nodePort` | Specify the nodePort value for the LoadBalancer and NodePort service types | `""` |
| `service.externalTrafficPolicy` | Enable client source IP preservation | `Cluster` |
| `service.annotations` | Annotations for Kibana service (evaluated as a template) | `{}` |
| `service.labels` | Extra labels for Kibana service | `{}` |
| `service.loadBalancerIP` | loadBalancerIP if Kibana service type is `LoadBalancer` | `""` |
| `service.extraPorts` | Extra ports to expose in the service (normally used with the `sidecar` value) | `[]` |
| `ingress.enabled` | Enable ingress controller resource | `false` |
+3
View File
@@ -3,6 +3,9 @@ kind: Service
metadata:
name: {{ include "common.names.fullname" . }}
labels: {{- include "common.labels.standard" . | nindent 4 }}
{{- if .Values.service.labels }}
{{- include "common.tplvalues.render" (dict "value" .Values.service.labels "context" $) | nindent 4 }}
{{- end }}
{{- if or (and .Values.metrics.enabled .Values.metrics.service.annotations) .Values.service.annotations }}
annotations:
{{- if and .Values.metrics.enabled .Values.metrics.service.annotations }}
+3
View File
@@ -240,6 +240,9 @@ service:
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer
##
annotations: {}
## @param service.labels Extra labels for Kibana service
##
labels: {}
## @param service.loadBalancerIP loadBalancerIP if Kibana service type is `LoadBalancer`
## ref: http://kubernetes.io/docs/user-guide/services/#type-loadbalancer
##