Add Ironic inspector health checks

This patch add health checks for ironic_inspector container
and ironic_inspector_dnsmasq container. Inspector health is checked
using curl of the API interface and dnsmasq is checked using opened
port verification.

Change-Id: I0bcc713d342f6388750dd9dcecf439db3c59d651
This commit is contained in:
Martin Mágr
2018-04-16 23:01:16 +02:00
parent ee1e07dee1
commit d03c53c3e4

16
healthcheck/ironic-inspector Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/sh
. ${HEALTHCHECK_SCRIPTS:-/usr/share/openstack-tripleo-common/healthcheck}/common.sh
process='dnsmasq'
if pgrep $process; then
ports="${@:-67}"
if ! healthcheck_listen $process $ports; then
echo "There is no $process process listening on port(s) $ports in the container."
exit 1
fi
else
bind_host=$(get_config_val /etc/ironic-inspector/inspector.conf DEFAULT listen_address 127.0.0.1)
bind_port=$(get_config_val /etc/ironic-inspector/inspector.conf DEFAULT listen_port 5050)
healthcheck_curl http://${bind_host}:${bind_port}
fi