From e581c27e32202606e4580b6ba8b42c3bb9ae097e Mon Sep 17 00:00:00 2001 From: Tim Rozet Date: Mon, 26 Feb 2018 13:27:39 -0500 Subject: [PATCH] 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 --- puppet/services/opendaylight-api.yaml | 2 +- releasenotes/notes/fix-odl-gui-feature-6525b8c6807fb784.yaml | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/fix-odl-gui-feature-6525b8c6807fb784.yaml diff --git a/puppet/services/opendaylight-api.yaml b/puppet/services/opendaylight-api.yaml index af27aab5f3..c6a1cecb70 100644 --- a/puppet/services/opendaylight-api.yaml +++ b/puppet/services/opendaylight-api.yaml @@ -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: '' diff --git a/releasenotes/notes/fix-odl-gui-feature-6525b8c6807fb784.yaml b/releasenotes/notes/fix-odl-gui-feature-6525b8c6807fb784.yaml new file mode 100644 index 0000000000..0c1c6e12f9 --- /dev/null +++ b/releasenotes/notes/fix-odl-gui-feature-6525b8c6807fb784.yaml @@ -0,0 +1,5 @@ +--- +fixes: + - | + Fixes GUI feature loaded into OpenDaylight, which fixes the GUI as well + as the URL used for Docker healthcheck.