Skip to content

Commit

Permalink
[common] fix: quote extraLabel value
Browse files Browse the repository at this point in the history
Signed-off-by: Bruno Jost <[email protected]>
  • Loading branch information
brjos committed Aug 4, 2023
1 parent fc17db5 commit e4f4528
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/common/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: common
description: "Bedag's common Helm chart to use for creating other Helm charts"
version: 10.3.0
version: 10.3.1
# A chart can be either an 'application' or a 'library' chart.
#
# Application charts are a collection of templates that can be packaged into versioned archives
Expand Down
2 changes: 1 addition & 1 deletion charts/common/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# common

![Version: 10.3.0](https://img.shields.io/badge/Version-10.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 10.3.1](https://img.shields.io/badge/Version-10.3.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

Bedag's common Helm chart to use for creating other Helm charts

Expand Down
2 changes: 1 addition & 1 deletion charts/common/templates/_cronjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ spec:
{{ include "library.labels.stable" $root | indent 8 }}
app.kubernetes.io/component: {{ $name }}
{{- range $key, $value := $cronjob.extraLabels }}
{{ $key }}: {{ $value }}
{{ $key }}: {{ $value | quote }}
{{- end }}
{{- if $cronjob.gatherMetrics }}
gatherMetrics: "enabled"
Expand Down
2 changes: 1 addition & 1 deletion charts/common/templates/_deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ spec:
{{ include "library.labels.stable" $root | indent 8 }}
app.kubernetes.io/component: {{ $name }}
{{- range $key, $value := $deployment.extraLabels }}
{{ $key }}: {{ $value }}
{{ $key }}: {{ $value | quote }}
{{- end }}
{{- if $deployment.gatherMetrics }}
gatherMetrics: "enabled"
Expand Down
2 changes: 1 addition & 1 deletion charts/common/templates/_jobspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ template:
{{ include "library.labels.stable" $root | indent 6 }}
app.kubernetes.io/component: {{ $name }}
{{- range $key, $value := $job.extraLabels }}
{{ $key }}: {{ $value }}
{{ $key }}: {{ $value | quote }}
{{- end }}
{{- if $job.gatherMetrics }}
gatherMetrics: "enabled"
Expand Down
2 changes: 1 addition & 1 deletion charts/common/templates/_statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ spec:
{{ include "library.labels.stable" $root | indent 8 }}
app.kubernetes.io/component: {{ $name }}
{{- range $key, $value := $statefulset.extraLabels }}
{{ $key }}: {{ $value }}
{{ $key }}: {{ $value | quote }}
{{- end }}
{{- if $statefulset.gatherMetrics }}
gatherMetrics: "enabled"
Expand Down

0 comments on commit e4f4528

Please sign in to comment.