98d436eb94
This moves the set of ceph entrypoint scripts into the helm chart this allows us to control how the different pods start. Also gives each script the +x flag to give better insight as to the execution of entrypoint scripts. Change-Id: Ib78b8a5d57f653bdb399a1980b34ab5ea25f94cc
14 lines
186 B
Smarty
14 lines
186 B
Smarty
#!/bin/bash
|
|
set -ex
|
|
|
|
function watch_mon_health {
|
|
|
|
while [ true ]
|
|
do
|
|
log "checking for zombie mons"
|
|
/check_zombie_mons.py || true
|
|
log "sleep 30 sec"
|
|
sleep 30
|
|
done
|
|
}
|