Jump to: navigation, search

Difference between revisions of "MuranoDashboardChanges"

(Created page with "One very noticeable change in Murano Dashboard is coming in version 0.4: 'Murano' panel (currently resides at Project->Other->Environments) will be moved to a separate dashboa...")
 
Line 2: Line 2:
  
 
The following changes are to be made in Horizon config file settings.py. Lines:
 
The following changes are to be made in Horizon config file settings.py. Lines:
 
+
HORIZON_CONFIG['dashboards'] += ('murano',)
HORIZON_CONFIG['dashboards'] += ('murano',)
+
HORIZON_CONFIG['default_dashboard'] = 'murano'
HORIZON_CONFIG['default_dashboard'] = 'murano'
+
HORIZON_CONFIG['user_home'] = 'muranodashboard.views.get_user_home'
HORIZON_CONFIG['user_home'] = 'muranodashboard.views.get_user_home'
 
 
 
 
should be appended to settings.py, while the line:
 
should be appended to settings.py, while the line:
 
+
HORIZON_CONFIG['customization_module'] = 'muranodashboard.panel.overrides'
HORIZON_CONFIG['customization_module'] = 'muranodashboard.panel.overrides'
 
 
 
 
should be removed.
 
should be removed.

Revision as of 14:25, 22 October 2013

One very noticeable change in Murano Dashboard is coming in version 0.4: 'Murano' panel (currently resides at Project->Other->Environments) will be moved to a separate dashboard called 'Murano'. So the address for 'Environments' panel will be Murano->Deployment->Environments.

The following changes are to be made in Horizon config file settings.py. Lines:

HORIZON_CONFIG['dashboards'] += ('murano',)
HORIZON_CONFIG['default_dashboard'] = 'murano'
HORIZON_CONFIG['user_home'] = 'muranodashboard.views.get_user_home'

should be appended to settings.py, while the line:

HORIZON_CONFIG['customization_module'] = 'muranodashboard.panel.overrides'

should be removed.