From 5973c79cb0cd7859af1a76f76a9aa97642c37e90 Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Fri, 25 Aug 2017 14:06:06 -0400 Subject: [PATCH] Serialize ansible-playbooks to 10% of nodes in infracloud Bump ansible-playbook runs to 10% of our compute nodes, this is ~12 nodes at a time. We also max failures out to 100% because we actually want to run puppet across all nodes, regardless of what fails. Change-Id: I74b294820d8cd342fd7e5466ee63f198177412b4 Signed-off-by: Paul Belanger --- playbooks/remote_puppet_infracloud.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/playbooks/remote_puppet_infracloud.yaml b/playbooks/remote_puppet_infracloud.yaml index 6572456579..8912c3b8c7 100644 --- a/playbooks/remote_puppet_infracloud.yaml +++ b/playbooks/remote_puppet_infracloud.yaml @@ -7,7 +7,8 @@ manage_config: true - hosts: "compute*.ic.openstack.org:!disabled" gather_facts: true - serial: 1 + max_fail_percentage: 100 + serial: "10%" roles: - role: puppet manage_config: true