Skip to content

Commit

Permalink
[prometheus-memcached-exporter] Fix: allow to configure extra labels …
Browse files Browse the repository at this point in the history
…and annotations for the Service (#3943)

Signed-off-by: R.Sicart <roger.sicart@gmail.com>
  • Loading branch information
rsicart authored Nov 10, 2023
1 parent 206e02d commit e64c7be
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/prometheus-memcached-exporter/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: prometheus-memcached-exporter
description: Prometheus exporter for Memcached metrics
type: application
version: 0.1.0
version: 0.2.0
appVersion: "v0.13.0"
home: https://github.com/prometheus/memcached_exporter
sources:
Expand Down
7 changes: 7 additions & 0 deletions charts/prometheus-memcached-exporter/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ metadata:
name: {{ include "prometheus-memcached-exporter.fullname" . }}
labels:
{{- include "prometheus-memcached-exporter.labels" . | nindent 4 }}
{{- with .Values.service.labels }}
{{- toYaml . | nindent 4 }}
{{- end }}
{{- with .Values.service.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
type: {{ .Values.service.type }}
ports:
Expand Down
4 changes: 4 additions & 0 deletions charts/prometheus-memcached-exporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ securityContext: {}
service:
type: ClusterIP
port: 9150
# Labels to append to the service
labels: {}
# Annotations to add to the service
annotations: {}

resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
Expand Down

0 comments on commit e64c7be

Please sign in to comment.