Skip to content

Commit 5fe7d2a

Browse files
authored
fix: add pod annotations to helm values (#16)
1 parent ac18f17 commit 5fe7d2a

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

helm/templates/deployment.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ spec:
2727
checksum/config: {{ include (print $.Template.BasePath "/raw-spans-grouper-config.yaml") . | sha256sum }}
2828
prometheus.io/scrape: "true"
2929
prometheus.io/port: "{{ .Values.containerAdminPort }}"
30+
{{- with .Values.podAnnotations }}
31+
{{- toYaml . | nindent 8 }}
32+
{{- end }}
3033
spec:
3134
{{- with .Values.imagePullSecrets }}
3235
imagePullSecrets:

helm/values.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ deploymentLabels:
5252
podLabels:
5353
app: raw-spans-grouper
5454

55+
podAnnotations: {}
56+
5557
# The Deployment Selector match labels are different from the pod labels. Note that they should be a subset of the pod
5658
# labels. You append new labels to them but cannot remove labels. If you remove or modify the labels you will need to
5759
# delete the existing deployment bearing the same name and then redeploy. This is the reason why they are separated from

0 commit comments

Comments
 (0)