1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
#!/bin/sh
set -ex
DAEMON_TIMEOUT=60
CRM_TIMEOUT=5
# https://bugs.launchpad.net/bugs/1828228
ulimit -H -l unlimited 2>/dev/null || {
echo "test disabled for unprivileged namespaces"
exit 77
}
#
# daemons start
#
service corosync start
service pacemaker start
sleep $DAEMON_TIMEOUT
# Get the node name as sugested in
# https://lists.clusterlabs.org/pipermail/users/2022-May/030309.html
NODE="$(crm_node -n)"
if [ -z "$NODE" ]; then
echo "Could not detect node name"
exit 1
fi
# crmsh will try to ping the node name so make sure it can be resolved
if ! getent hosts "$NODE" >/dev/null 2>&1; then
echo "127.0.0.1 $NODE" >> /etc/hosts
fi
#
# online
#
crm status | grep "Online:.*$NODE"
#
# standby
#
crm node standby $NODE
sleep $CRM_TIMEOUT
crm status | grep "Node $NODE: standby"
crm node online $NODE
sleep $CRM_TIMEOUT
crm status | grep "Online:.*$NODE"
#
# maintenance
#
crm node maintenance $NODE
sleep $CRM_TIMEOUT
crm status | grep "Node $NODE: maintenance"
crm node ready $NODE
sleep $CRM_TIMEOUT
crm status | grep "Online:.*$NODE"
#
# attributes
#
crm node attribute $NODE set memory_size 1024
crm node attribute $NODE show memory_size | grep 1024
crm node utilization $NODE set memory 2048
crm node utilization $NODE show memory | grep 2048
crm node server
crm node show
: INFO all tests OK
exit 0
|