Enable Heat and Designate dashboards in Horizon

The Heat dashboard was split from horizon in Queens, and
therefore needs to be installed separately.

The Designate dashboard was never installed by the charm
before but should be.

Change-Id: Ie0790fd1e1a6422465f4a4e00769efcd667d28e2
Closes-Bug: #1746031
Closes-Bug: #1747934
This commit is contained in:
Corey Bryant 2018-02-06 15:17:43 +00:00
parent 68be2c8e7e
commit cd8b510f95
1 changed files with 3 additions and 0 deletions

View File

@ -238,6 +238,9 @@ def determine_packages():
packages.append('python-pymysql')
if CompareOpenStackReleases(release) >= 'ocata':
packages.append('python-neutron-lbaas-dashboard')
if CompareOpenStackReleases(release) >= 'queens':
packages.append('python-designate-dashboard')
packages.append('python-heat-dashboard')
return list(set(packages))