5f3f13cc0a
Replace socket-based liveness checks with scripts The current TCP socket-based liveness/readiness check for Ceph doesn't accurately reflect when daemons are live, doesn't handle multiple OSDs on a host, and doesn't work when hostNetworking is in use and the Ceph network is different from the one associated with the hostname. This change adds new scripts for checking Ceph monitor and OSD liveness/readiness that query the Ceph Unix domain sockets to get daemon status and exits 0 iff all sockets report that their daemons are in an "active" state. This isn't perfect: we don't know how many daemons SHOULD be active, so if only a subset is live and the others have no sockets (yet?), we'll still claim the pod is ready. The scripts also don't distinguish between liveness and readiness for OSDs. Change-Id: I5d370b4bc4025fece2e640355c3a29167afca871
45 lines
1.5 KiB
Smarty
Executable File
45 lines
1.5 KiB
Smarty
Executable File
#!/bin/sh
|
|
|
|
# Copyright 2017 The Openstack-Helm Authors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# A readiness check for ceph monitors: exit 0 iff the monitor appears to be at least
|
|
# alive (but not necessarily in a quorum).
|
|
CEPH=${CEPH_CMD:-/usr/bin/ceph}
|
|
SOCKDIR=${CEPH_SOCKET_DIR:-/run/ceph}
|
|
SBASE=${CEPH_OSD_SOCKET_BASE:-ceph-mon}
|
|
SSUFFIX=${CEPH_SOCKET_SUFFIX:-asok}
|
|
|
|
mon_live_state="leader peon"
|
|
|
|
monid=`ps auwwx | grep ceph-mon | grep -v "$1" | grep -v grep | sed 's/.*-i\ *//;s/\ *-.*//'|awk '{print $1}'`
|
|
|
|
if [ -z "${monid}" ]; then
|
|
# not really a sensible fallback, but it'll do.
|
|
monid=`hostname`
|
|
fi
|
|
|
|
if [ -S "${SOCKDIR}/${SBASE}.${monid}.${SSUFFIX}" ]; then
|
|
state=`${CEPH} -f json-pretty --connect-timeout 1 --admin-daemon "${sock}" mon_status|grep state|sed 's/.*://;s/[^a-z]//g'`
|
|
echo "MON $monid $state";
|
|
# this might be a stricter check than we actually want. what are the
|
|
# other values for the "state" field?
|
|
for S in ${mon_live_state}; do
|
|
if [ "x${state}x" = "x${S}x" ]; then
|
|
exit 0
|
|
fi
|
|
done
|
|
fi
|
|
exit 1
|