doc(trait): integration toleration examples
diff --git a/docs/modules/traits/pages/toleration.adoc b/docs/modules/traits/pages/toleration.adoc
index 07f8cb9..d3b3e88 100755
--- a/docs/modules/traits/pages/toleration.adoc
+++ b/docs/modules/traits/pages/toleration.adoc
@@ -43,3 +43,20 @@
 |===
 
 // End of autogenerated code - DO NOT EDIT! (configuration)
+
+== Examples
+
+* To tolerate the integration pod(s) to be scheduled on the master node:
++
+[source,console]
+$ kamel run -t toleration.taints="node-role.kubernetes.io/master:NoSchedule" ...
+
+* To tolerate the integration pod(s) executing on a node with network not available for 300 seconds:
++
+[source,console]
+$ kamel run -t toleration.taints="node.kubernetes.io/network-unavailable:NoExecute:300" ...
+
+* To tolerate the integration pod(s) to be scheduled on a node with a disk of SSD type:
++
+[source,console]
+$ kamel run -t toleration.taints="disktype=ssd:PreferNoSchedule" ...
\ No newline at end of file