We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f684e7 commit 395b659Copy full SHA for 395b659
helm/install/templates/manager.yaml
@@ -64,3 +64,11 @@ spec:
64
port: 8081
65
initialDelaySeconds: 5
66
periodSeconds: 10
67
+ {{- if .Values.tolerations }}
68
+ tolerations:
69
+ {{- toYaml .Values.tolerations | nindent 8 }}
70
+ {{- end }}
71
+ {{- if .Values.affinity }}
72
+ affinity:
73
+ {{- toYaml .Values.affinity | nindent 8 }}
74
helm/install/values.yaml
@@ -87,3 +87,9 @@ resources:
87
# envOverride:
88
# - name: PG_DEBUG
89
# value: "true"
90
+
91
+# tolerations allows you to define pod tolerations for the operator pods.
92
+tolerations: []
93
94
+# affinity allows you to define pod affinity and anti-affinity rules for the operator pods.
95
+affinity: {}
0 commit comments