mirror of
https://github.com/wahyd4/charts.git
synced 2026-08-19 01:56:18 +10:00
[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:
co-authored by
Abdullah Tariq
parent
5d03d2a9a9
commit
7d4deeb948
@@ -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
|
||||
|
||||
@@ -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,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 }}
|
||||
|
||||
@@ -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
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user