Skip to content

Commit 9f687f6

Browse files
authored
feat(helm): add annotations to configmaps (#1826)
1 parent 818f1da commit 9f687f6

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

helm/akhq/templates/configmap.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ apiVersion: v1
33
kind: ConfigMap
44
metadata:
55
name: {{ template "akhq.fullname" . }}
6+
{{- with .Values.configmapAnnotations }}
7+
annotations:
8+
{{- toYaml . | nindent 4 }}
9+
{{- end }}
610
labels:
711
app.kubernetes.io/name: {{ include "akhq.name" . }}
812
helm.sh/chart: {{ include "akhq.chart" . }}

helm/akhq/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ annotations: {}
1313

1414
podAnnotations: {}
1515

16+
configmapAnnotations: {}
17+
# vault.security.banzaicloud.io/vault-role: akhq
18+
# vault.security.banzaicloud.io/vault-serviceaccount: akhq
19+
1620
# custom labels
1721
labels: {}
1822
# custom.label: 'true'

0 commit comments

Comments
 (0)