Pod Toleration
Support for specifying Kubernetes YAML for Pod Toleration
Last updated
Was this helpful?
Support for specifying Kubernetes YAML for Pod Toleration
DuploCloud supports the customization of many Kubernetes (K8s) YAML operators, such as tolerations. If you are using a Docker container, you can specify the tolerations operator configuration in the Other Container Config field in the container definition in DuploCloud
In the DuploCloud Portal, navigate to Kubernetes -> Services. The Services page displays.
Select the Service from the NAME column.
From the Actions menu, select Edit. The Edit Service page displays.

Click Next to proceed to the Advanced Options page.
In the Other Container Config field, add the tolerations operator YAML you have customized for your container.

Click Update. Your container has been updated with your custom specifications for the tolerations operator.
tolerations operator YAMLIn this example:
If a Pod is running and a taint matching key1 exists on the node, then the Pod will not schedule the node (NoSchedule).
If a Pod is running and a taint matching example-key exists on the node, then the Pod stays bound to the node for 6000 seconds and then is evicted (NoExecute). If the taint is removed before that time, the Pod will not be evicted.
Last updated
Was this helpful?
Was this helpful?
tolerations:
- key: key1
operator: Equal
value: value1
effect: NoSchedule
- key: example-key
operator: Exists
effect: NoExecute
tolerationSeconds: 6000
