diff options
author | 2023-07-18 20:27:56 +0200 | |
---|---|---|
committer | 2023-07-19 11:14:10 +0200 | |
commit | 95ea136d97f812b0946b03f8d9b2df4cdf3673d3 (patch) | |
tree | 1b6ea3ff7402600663e611911cd8670b4d90fb69 /kubernetes/common | |
parent | 1be1c0f7ab523184b4c24cbc934d2bcd4afde69f (diff) |
[COMMON] Add version label to be Istio ready
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>
Diffstat (limited to 'kubernetes/common')
-rw-r--r-- | kubernetes/common/common/templates/_labels.tpl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/kubernetes/common/common/templates/_labels.tpl b/kubernetes/common/common/templates/_labels.tpl index f2bd1a1141..a690acd141 100644 --- a/kubernetes/common/common/templates/_labels.tpl +++ b/kubernetes/common/common/templates/_labels.tpl @@ -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 }} |