[COMMON] Add version label to be Istio ready 99/135499/4
authorAndreas Geissler <andreas-geissler@telekom.de>
Tue, 18 Jul 2023 18:27:56 +0000 (20:27 +0200)
committerAndreas Geissler <andreas-geissler@telekom.de>
Wed, 19 Jul 2023 09:14:10 +0000 (11:14 +0200)
Add the "version" label (Chart.Version or Chart.AppVesrion
if exists)
Correct the metadata of CPS deployment.

Issue-ID: OOM-3230

Change-Id: I0a6907ed95c6b0dfcf7f89fec9c3dafbc2fb1d9b
Signed-off-by: Andreas Geissler <andreas-geissler@telekom.de>
kubernetes/common/common/templates/_labels.tpl
kubernetes/cps/components/ncmp-dmi-plugin/templates/deployment.yaml

index f2bd1a1..a690acd 100644 (file)
@@ -27,6 +27,11 @@ The function takes several arguments (inside a dictionary):
 {{- $dot := default . .dot -}}
 app.kubernetes.io/name: {{ include "common.name" $dot }}
 app: {{ include "common.name" $dot }}
+{{- if $dot.Chart.AppVersion }}
+version: "{{ $dot.Chart.AppVersion | replace "+" "_" }}"
+{{- else }}
+version: "{{ $dot.Chart.Version | replace "+" "_" }}"
+{{- end }}
 {{ if not .ignoreHelmChart }}
 helm.sh/chart: {{ include "common.chart" $dot }}
 {{- end }}
index 4ff2851..2d653a1 100644 (file)
@@ -31,10 +31,7 @@ spec:
       maxSurge: {{ index .Values.updateStrategy.maxSurge }}
   selector: {{- include "common.selectors" . | nindent 4 }}
   template:
-    metadata:
-      labels:
-        app.kubernetes.io/name: {{ include "common.name" . }}
-        app.kubernetes.io/instance: {{ include "common.release" . }}
+    metadata: {{- include "common.templateMetadata" . | nindent 6 }}
     spec:
       {{ include "common.podSecurityContext" . | indent 6 | trim}}
       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . ) }}