18 lines
613 B
YAML
18 lines
613 B
YAML
{{- if .Values.metrics.enabled }}
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "elasticsearch.metrics.fullname" . }}
|
|
labels: {{- include "common.labels.standard" . | nindent 4 }}
|
|
app.kubernetes.io/component: metrics
|
|
annotations: {{ include "common.tplvalues.render" ( dict "value" .Values.metrics.service.annotations "context" $) | nindent 4 }}
|
|
spec:
|
|
type: {{ .Values.metrics.service.type }}
|
|
ports:
|
|
- name: http-metrics
|
|
port: 9114
|
|
targetPort: metrics
|
|
selector: {{- include "common.labels.matchLabels" . | nindent 4 }}
|
|
app.kubernetes.io/component: metrics
|
|
{{- end }}
|