From 37db5af9f013e6d7a12471a9b7fca9e2fbfacfbc Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Mon, 27 Jul 2020 15:27:21 -0700 Subject: [PATCH] base / keytab: Try and throttle task to 1 This task seems to fail with a nameserver failed to answer message when you provision a bunch of hosts at once. Try running just one at a time and see if it helps any. Signed-off-by: Kevin Fenzi --- roles/base/tasks/keytab.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/base/tasks/keytab.yml b/roles/base/tasks/keytab.yml index a6f43cc2ba..a3df1535dc 100644 --- a/roles/base/tasks/keytab.yml +++ b/roles/base/tasks/keytab.yml @@ -23,6 +23,7 @@ register: host_add_result changed_when: "'Added host' in host_add_result.stdout" failed_when: "not ('Added host' in host_add_result.stdout or 'already exists' in host_add_result.stderr)" + throttle: 1 tags: - base - config