Fixes OpenDaylight healthcheck/GUI feature

Deployments with OpenDaylight fail because the Docker healthcheck fails.
This is due to the fact that the URL used for querying with the
healthcheck is not available, due to a feature mismatch.  This patch
fixes the GUI feature being installed to address the issue.

Closes-Bug: 1751857

Change-Id: Ia62aebb9c03e09c1986c1592a38ab455e68fd103
Signed-off-by: Tim Rozet <trozet@redhat.com>
(cherry picked from commit e581c27e32)
This commit is contained in:
Tim Rozet 2018-02-26 13:27:39 -05:00
parent 5b5e124898
commit 5871c9f79f
2 changed files with 6 additions and 1 deletions

View File

@ -24,7 +24,7 @@ parameters:
OpenDaylightFeatures:
description: List of features to install with ODL
type: comma_delimited_list
default: ["odl-netvirt-openstack","odl-netvirt-ui","odl-jolokia"]
default: ["odl-netvirt-openstack","odl-dlux-core","odl-jolokia"]
OpenDaylightApiVirtualIP:
type: string
default: ''

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Fixes GUI feature loaded into OpenDaylight, which fixes the GUI as well
as the URL used for Docker healthcheck.