Fixup octavia-api healthcheck

Octavia now runs under apache so it's healthcheck needs updating.

Change-Id: If04483e03bc92aea690db27ad4aeff31c3f5cff6
This commit is contained in:
Brent Eagles 2019-04-24 10:13:25 -02:30
parent 9ca190828c
commit 4c3d5182f4
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}