rancher-charts/packages/rancher-node-exporter/generated-changes/patch/templates/daemonset.yaml.patch

43 lines
1.4 KiB
Diff
Raw Normal View History

--- charts-original/templates/daemonset.yaml
+++ charts/templates/daemonset.yaml
@@ -29,9 +29,13 @@
{{- if .Values.priorityClassName }}
priorityClassName: {{ .Values.priorityClassName }}
{{- end }}
+ {{- if .Values.extraInitContainers }}
+ initContainers:
+ {{ toYaml .Values.extraInitContainers | nindent 6 }}
+ {{- end }}
containers:
- name: node-exporter
- image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
+ image: "{{ template "system_default_registry" . }}{{ .Values.image.repository }}:{{ .Values.image.tag }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
args:
- --path.procfs=/host/proc
@@ -129,18 +133,18 @@
affinity:
{{ toYaml .Values.affinity | indent 8 }}
{{- end }}
+ nodeSelector: {{ include "linux-node-selector" . | nindent 8 }}
{{- with .Values.dnsConfig }}
dnsConfig:
{{ toYaml . | indent 8 }}
{{- end }}
{{- if .Values.nodeSelector }}
- nodeSelector:
-{{ toYaml .Values.nodeSelector | indent 8 }}
+{{- toYaml .Values.Selector | nindent 8 }}
+{{- end }}
+ tolerations: {{ include "linux-node-tolerations" . | nindent 8 }}
+{{- if .Values.tolerations }}
+{{- toYaml .Values.tolerations | nindent 8 }}
{{- end }}
- {{- with .Values.tolerations }}
- tolerations:
-{{ toYaml . | indent 8 }}
- {{- end }}
volumes:
- name: proc
hostPath: