diff --git a/healthcheck/octavia-api b/healthcheck/octavia-api index 20f78bd2e..4906e4190 100755 --- a/healthcheck/octavia-api +++ b/healthcheck/octavia-api @@ -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}