From c7eaccb7b548927a318368739b87b85d75a37a91 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Fri, 2 Jun 2017 10:38:42 -0400 Subject: [PATCH] added delegate_to warning --- docs/docsite/rst/playbooks_delegation.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docsite/rst/playbooks_delegation.rst b/docs/docsite/rst/playbooks_delegation.rst index de684290431..50066ba5561 100644 --- a/docs/docsite/rst/playbooks_delegation.rst +++ b/docs/docsite/rst/playbooks_delegation.rst @@ -108,9 +108,9 @@ Delegation This isn't actually rolling update specific but comes up frequently in those cases. If you want to perform a task on one host with reference to other hosts, use the 'delegate_to' keyword on a task. -This is ideal for placing nodes in a load balanced pool, or removing them. It is also very useful for controlling -outage windows. Using this with the 'serial' keyword to control the number of hosts executing at one time is also -a good idea:: +This is ideal for placing nodes in a load balanced pool, or removing them. It is also very useful for controlling outage windows. +Be aware that it does not make sense to delegate all tasks, debug, add_host, include, etc always get executed on the controller. +Using this with the 'serial' keyword to control the number of hosts executing at one time is also a good idea:: ---