From 39ffab99ad34ff45c0ed8be5a8172106e6a819a5 Mon Sep 17 00:00:00 2001 From: Alexandru Avadanii Date: Fri, 22 Sep 2017 19:04:17 +0200 Subject: states: maas: Add 30s delay in re-deploy attempt Occasionaly, MaaS fails to provision/deploy some nodes, in which case we try marking them as broken, then fixed (to put them again in 'ready' state); before re-attempting the MaaS deploy operation. However, this leads to 'Error: Internal server error' when deploy function is called right after transitioning the node to 'ready' state. Add a delay of 30 seconds before re-attempting the failed operation. Change-Id: Ia9ecec67639387e4a29feab3114e1741c554a2cb Signed-off-by: Alexandru Avadanii --- mcp/config/states/maas | 2 ++ 1 file changed, 2 insertions(+) (limited to 'mcp') diff --git a/mcp/config/states/maas b/mcp/config/states/maas index 11c89c99b..e1ffa8733 100755 --- a/mcp/config/states/maas +++ b/mcp/config/states/maas @@ -28,6 +28,7 @@ function maas_fixup() { for node_system_id in ${fcnodes}; do salt -C 'mas01*' state.apply maas.machines.delete \ pillar="{'system_id': '${node_system_id}'}" + sleep 30 done if [ -n "${fcnodes}" ]; then salt -C 'mas01*' state.apply maas.machines @@ -40,6 +41,7 @@ function maas_fixup() { for node_system_id in ${fdnodes}; do salt -C 'mas01*' state.apply maas.machines.mark_broken_fixed \ pillar="{'system_id': '${node_system_id}'}" + sleep 30 done if [ -n "${fdnodes}" ]; then salt -C 'mas01*' state.apply maas.machines.deploy -- cgit 1.2.3-korg