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 6e9c4d3 commit aa4eb2aCopy full SHA for aa4eb2a
charts/docker-mailserver/templates/deployment.yaml
@@ -39,6 +39,9 @@ spec:
39
serviceAccountName: {{ template "dockermailserver.serviceAccountName" . }}
40
securityContext:
41
{{ toYaml .Values.securityContext | indent 8 }}
42
+ {{- if .Values.deployment.tolerations }}
43
+ tolerations: {{- toYaml .Values.deployment.tolerations | nindent 8 }}
44
+ {{ end }}
45
volumes:
46
# ConfigMaps
47
{{- range $name, $config := .Values.configMaps }}
charts/docker-mailserver/values.yaml
@@ -264,6 +264,9 @@ deployment:
264
## it may terminated.
265
memory: "2048Mi"
266
ephemeral-storage: "500Mi"
267
+
268
+ ## Optionally specify tolerations for the deployment
269
+ tolerations: []
270
271
service:
272
## What scope the service should be exposed in. One of:
0 commit comments