blob: 51cc0173738c5f150440a7c576daa50d0afddc97 [file] [log] [blame]
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +00001{{- if (eq .Values.role "Agent") -}}
2apiVersion: apps/v1
3kind: DaemonSet
4metadata:
5 name: {{ include "vector.fullname" . }}
6 labels:
7 {{- include "vector.labels" . | nindent 4 }}
8spec:
9 selector:
10 matchLabels:
11 {{- include "vector.selectorLabels" . | nindent 6 }}
12 {{- with .Values.updateStrategy }}
13 updateStrategy:
14 {{- toYaml . | nindent 4 }}
15 {{- end }}
16 template:
17 metadata:
18 annotations:
19 {{- if .Values.rollWorkload }}
20 {{- if .Values.existingConfigMaps }}
21 {{- range .Values.existingConfigMaps }}
22 {{- range $file, $contents := (lookup "v1" "ConfigMap" (print $.Release.Namespace) (print .)).data }}
23 checksum/{{ $file }}: {{ $contents | sha256sum }}
24 {{- end }}
25 {{- end }}
26 {{- else }}
27 checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
28 {{- end }}
29 {{- end }}
30 {{- with .Values.podAnnotations }}
31 {{- toYaml . | nindent 8 }}
32 {{- end }}
33 labels:
34 {{- include "vector.selectorLabels" . | nindent 8 }}
35 {{- with .Values.podLabels }}
36 {{- toYaml . | nindent 8 }}
37 {{- end }}
38 spec:
39 {{- include "vector.pod" . | nindent 6 }}
40{{- end }}