diff --git a/chart/templates/deployment.yaml b/chart/templates/deployment.yaml index bd75c8d1ddb..fbbb789d455 100644 --- a/chart/templates/deployment.yaml +++ b/chart/templates/deployment.yaml @@ -63,6 +63,9 @@ spec: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: {{ include "linux-node-selector-terms" . | nindent 14 }} tolerations: {{ include "linux-node-tolerations" . | nindent 8 }} +{{- if .Values.extraTolerations }} +{{ toYaml .Values.extraTolerations | indent 8 }} +{{- end }} containers: - image: {{ .Values.rancherImage }}:{{ default .Chart.AppVersion .Values.rancherImageTag }} imagePullPolicy: {{ default "IfNotPresent" .Values.rancherImagePullPolicy }} diff --git a/chart/values.yaml b/chart/values.yaml index 5b805e11b75..2934faaf7d6 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -178,6 +178,10 @@ startupProbe: timeoutSeconds: 5 periodSeconds: 10 failureThreshold: 12 + +# Additional taints to tolerate +extraTolerations: {} + livenessProbe: timeoutSeconds: 5 periodSeconds: 30