Mohammed Naser | 8a2c8fb | 2023-02-19 17:23:55 +0000 | [diff] [blame] | 1 | {{- if (eq .Values.role "Agent") -}} |
| 2 | apiVersion: apps/v1 |
| 3 | kind: DaemonSet |
| 4 | metadata: |
| 5 | name: {{ include "vector.fullname" . }} |
| 6 | labels: |
| 7 | {{- include "vector.labels" . | nindent 4 }} |
| 8 | spec: |
| 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 }} |