First time here? Check out the FAQ!
![]() | 1 | initial version |
You can remove the console tab on horizon by making the below change in
/usr/share/openstack-dashboard/openstack_dashboard/dashboards/project/instances/tabs.py
class InstanceDetailTabs(tabs.TabGroup): slug = "instance_details" tabs = (OverviewTab, LogTab, ConsoleTab, AuditTab) sticky = True
Replace the line tabs = (OverviewTab, LogTab, ConsoleTab, AuditTab) with
tabs = (OverviewTab, LogTab, AuditTab)
and restart apache
![]() | 2 | No.2 Revision |
You can remove the console tab on horizon by making the below change in
/usr/share/openstack-dashboard/openstack_dashboard/dashboards/project/instances/tabs.py
/usr/share/openstack-dashboard/openstack_dashboard/dashboards/project/instances/tabs.py
Replace the line tabs = (OverviewTab, LogTab, ConsoleTab,
AuditTab) AuditTab) with
tabs = (OverviewTab, LogTab, and restart apache