aboutsummaryrefslogtreecommitdiffstats
path: root/mcp/config/states/maas
diff options
context:
space:
mode:
authorMichael Polenchuk <mpolenchuk@mirantis.com>2017-08-22 11:49:42 +0400
committerMichael Polenchuk <mpolenchuk@mirantis.com>2017-08-22 11:50:52 +0400
commit131aef7c2cfea9e2bbb0be86c5534bd4feebbfbc (patch)
tree1652a137e1aa12daf86d3d1a00ba9d09a89f4b88 /mcp/config/states/maas
parente11609b40f7e281eadd8c78889ab59d62e435319 (diff)
Shift vcp nodes interfaces
* shift vcp nodes interfaces since names started from ens2 * add extra salt sync before vcp start up * run rabbitmq state on 1st node beforehand then the rest Change-Id: Ic2c174c288a5e89f2f28c0d9aa573340190a61d3 Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
Diffstat (limited to 'mcp/config/states/maas')
-rwxr-xr-xmcp/config/states/maas4
1 files changed, 3 insertions, 1 deletions
diff --git a/mcp/config/states/maas b/mcp/config/states/maas
index fa5e44659..52a9b7731 100755
--- a/mcp/config/states/maas
+++ b/mcp/config/states/maas
@@ -54,6 +54,7 @@ salt -C '* and not cfg01* and not mas01*' state.apply linux,ntp
salt -C 'kvm*' state.sls libvirt
salt -C '* and not cfg01* and not mas01*' state.apply salt
+salt -C 'kvm*' saltutil.sync_all
salt -C 'kvm*' state.sls salt.control
vcp_nodes=$(salt --out yaml 'kvm01*' pillar.get salt:control:cluster:internal:node | awk '/\s+\w+:$/ {gsub(/:$/, "*"); print $1}')
@@ -63,8 +64,9 @@ rc=1
while [ $rc -ne 0 ]; do
rc=0
for node in $vcp_nodes; do
- salt "$node" test.ping 2>/dev/null 1>&2 || { rc=$?; break; };
+ salt "$node" test.ping 2>/dev/null || { rc=$?; break; };
done
+ sleep 5
done
salt -C '* and not cfg01* and not mas01*' saltutil.sync_all