diff --git a/charts/component/Chart.yaml b/charts/component/Chart.yaml index 47f2696..88aac55 100644 --- a/charts/component/Chart.yaml +++ b/charts/component/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.2.3 +version: 0.2.4 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/component/templates/_helpers.tpl b/charts/component/templates/_helpers.tpl index 3b3d2b3..522150f 100644 --- a/charts/component/templates/_helpers.tpl +++ b/charts/component/templates/_helpers.tpl @@ -51,12 +51,15 @@ app.kubernetes.io/instance: {{ .Release.Name }} {{- end }} {{/* -Pod Annotations +Pod Annotations, add from both global and component values */}} {{- define "component.podAnnotations" -}} {{- if .Values.global.podAnnotations }} {{tpl .Values.global.podAnnotations .}} {{- end }} +{{- if .Values.podAnnotations }} +{{tpl .Values.podAnnotations .}} +{{- end }} {{- end }}