From 1dcd2674a3d9e8e9fc661a4463125b2737b94088 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20HO?= Date: Fri, 24 Nov 2023 13:57:27 +0100 Subject: [PATCH] Fix error with tolerations tag --- charts/redis-operator/templates/operator-deployment.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/charts/redis-operator/templates/operator-deployment.yaml b/charts/redis-operator/templates/operator-deployment.yaml index b1a5d8be..318b7924 100644 --- a/charts/redis-operator/templates/operator-deployment.yaml +++ b/charts/redis-operator/templates/operator-deployment.yaml @@ -59,6 +59,10 @@ spec: {{- with .Values.nodeSelector }} nodeSelector: {{ toYaml . | nindent 8 }} {{- end }} + {{- if .Values.tolerations }} + tolerations: + {{ toYaml .Values.tolerations | indent 8 }} + {{- end }} {{- if .Values.priorityClassName}} priorityClassName: {{ .Values.priorityClassName }} {{- end }}