Skip to content

Commit e5fb81e

Browse files
authored
feat(goldpinger): add labels and annotations to daemonset (#106)
Signed-off-by: nromriell <nateromriell@gmail.com>
1 parent 364867b commit e5fb81e

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

charts/goldpinger/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ name: goldpinger
1111
sources:
1212
- https://github.com/bloomberg/goldpinger
1313
- https://github.com/okgolove/helm-charts
14-
version: 6.1.2
14+
version: 6.1.3

charts/goldpinger/templates/daemonset.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,15 @@ apiVersion: apps/v1
22
kind: DaemonSet
33
metadata:
44
name: {{ include "goldpinger.fullname" . }}
5+
{{- with .Values.daemonsetAnnotations }}
6+
annotations:
7+
{{- toYaml . | nindent 4 }}
8+
{{- end }}
59
labels:
610
{{- include "goldpinger.labels" . | nindent 4 }}
11+
{{- with .Values.daemonsetLabels }}
12+
{{- toYaml . | nindent 4 }}
13+
{{- end }}
714
spec:
815
{{- with .Values.updateStrategy }}
916
updateStrategy:

charts/goldpinger/values.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,12 @@ resources: {}
8585
# cpu: 100m
8686
# memory: 128Mi
8787

88+
# Annotations added to the DaemonSet
89+
daemonsetAnnotations: {}
90+
91+
# Additional labels added to the DaemonSet
92+
daemonsetLabels: {}
93+
8894
podAnnotations: {}
8995

9096
podLabels: {}

0 commit comments

Comments
 (0)