Merge "Fixup octavia-api healthcheck"

This commit is contained in:
Zuul 2019-05-13 15:35:33 +00:00 committed by Gerrit Code Review
commit 5a3817f2b1
1 changed files with 2 additions and 10 deletions

View File

@ -1,13 +1,5 @@
#!/bin/bash
. ${HEALTHCHECK_SCRIPTS:-/usr/share/openstack-tripleo-common/healthcheck}/common.sh
bind_host=$(get_config_val /etc/octavia/octavia.conf api_settings bind_host 127.0.0.1)
bind_port=$(get_config_val /etc/octavia/octavia.conf api_settings bind_port 9876)
# Add brackets if IPv6
if [[ $bind_host =~ ":" ]]; then
bind_host="[${bind_host}]"
fi
healthcheck_curl http://${bind_host}:${bind_port}/
check_url=$(get_url_from_vhost /etc/httpd/conf.d/10-octavia_wsgi.conf)
healthcheck_curl ${check_url}