From 8a49275031fcfdc7a059a5b8e2c5dc7604722879 Mon Sep 17 00:00:00 2001 From: Thomas Decaux Date: Wed, 2 Feb 2022 16:24:06 +0100 Subject: [PATCH] fix(APM): add pod labels (#1527) --- apm-server/templates/deployment.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apm-server/templates/deployment.yaml b/apm-server/templates/deployment.yaml index fa87cfa5a..9ab2ef1f5 100644 --- a/apm-server/templates/deployment.yaml +++ b/apm-server/templates/deployment.yaml @@ -21,6 +21,9 @@ spec: labels: app: apm-server release: {{ .Release.Name | quote }} + {{- range $key, $value := .Values.labels }} + {{ $key }}: {{ $value | quote }} + {{- end }} annotations: {{- range $key, $value := .Values.podAnnotations }} {{ $key }}: {{ $value | quote }}