Skip to content

Commit

Permalink
fix(localstack): align template extraLabels with extraAnnotations
Browse files Browse the repository at this point in the history
  • Loading branch information
levivannoort committed Nov 27, 2024
1 parent 024d17c commit 84a3b04
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions charts/localstack/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,10 @@ helm.sh/chart: {{ include "localstack.chart" . }}
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
{{- end }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
{{- if .Values.extraLabels }}
{{ toYaml .Values.extraLabels }}
{{- with .Values.extraLabels }}
{{- range $label, $value := index . }}
{{ $label }}: {{ tpl $value $ | quote }}
{{- end }}
{{- end }}
{{- end }}

Expand Down

0 comments on commit 84a3b04

Please sign in to comment.