Merge "[ceph-mgr] Remove grep from the ceph-mgr health check function"

This commit is contained in:
Zuul
2025-08-07 22:34:32 +00:00
committed by Gerrit Code Review
2 changed files with 7 additions and 1 deletions

View File

@@ -22,7 +22,7 @@ COMMAND="${@:-liveness}"
function heath_check () {
ASOK=$(ls /var/run/ceph/${CLUSTER}-mgr*)
MGR_NAME=$(basename ${ASOK} | sed -e 's/.asok//' | cut -f 1 -d '.' --complement)
MGR_STATE=$(ceph --cluster ${CLUSTER} --connect-timeout 1 daemon mgr.${MGR_NAME} status|grep "osd_epoch")
MGR_STATE=$(ceph --cluster ${CLUSTER} --connect-timeout 1 daemon mgr.${MGR_NAME} status)
if [ $? = 0 ]; then
exit 0
else

View File

@@ -0,0 +1,6 @@
---
ceph-mon:
- |
Upgrade Ceph to 19.2.3 and adjust the ceph-mgr liveness probe to account
for a new asok status query handler that returns an empty dictionary.
...