Merge "HA: fix race when moving VIP during minor update" into stable/victoria

This commit is contained in:
Zuul 2021-04-20 11:36:19 +00:00 committed by Gerrit Code Review
commit eb610b61b4
1 changed files with 1 additions and 1 deletions

View File

@ -358,7 +358,7 @@ outputs:
VIPS_TO_MOVE=$(crm_mon --as-xml | xmllint --xpath '//resource[@resource_agent = "ocf::heartbeat:IPaddr2" and @role = "Started" and @managed = "true" and ./node[@name = "'${CLUSTER_NODE}'"]]/@id' - | sed -e 's/id=//g' -e 's/"//g')
for v in ${VIPS_TO_MOVE}; do
echo "Moving VIP $v on another node"
pcs resource move $v --wait=300
pcs resource ban $v ${CLUSTER_NODE} --wait=300
done
echo "Removing the location constraints that were created to move the VIPs"
for v in ${VIPS_TO_MOVE}; do