
This continues the work of moving infrastructure related services out of openstack-helm, by moving the ceph charts to openstack helm infra instead. Change-Id: I306ccd9d494f72a7946a7850f96d5c22f36eb8a0
15 lines
228 B
Smarty
15 lines
228 B
Smarty
#!/bin/bash
|
|
set -ex
|
|
export LC_ALL=C
|
|
|
|
function watch_mon_health {
|
|
while [ true ]; do
|
|
echo "checking for zombie mons"
|
|
/tmp/moncheck-reap-zombies.py || true
|
|
echo "sleep 30 sec"
|
|
sleep 30
|
|
done
|
|
}
|
|
|
|
watch_mon_health
|