[Bug 1778771] Re: Backups panel is visible even if enable_backup is False

Corey Bryant corey.bryant at canonical.com
Mon Oct 15 14:13:06 UTC 2018


** Description changed:

  Hi,
  
  Volumes - Backup panel is visible even if OPENSTACK_CINDER_FEATURES =
  {'enable_backup': False} in local_settings.py
  
  Meanwhile setting enable_backup to false removes an option to create
  backup of a volume in the volume drop-down options. But panel with
  backups itself stays visible for both admins and users.
  
  As a work-around I use the following customization script:
  import horizon
  from django.conf import settings
  if not getattr(settings, 'OPENSTACK_CINDER_FEATURES', {}).get('enable_backup', False):
-     project = horizon.get_dashboard("project")
-     backup = project.get_panel("backups")
-     project.unregister(backup.__class__)
+     project = horizon.get_dashboard("project")
+     backup = project.get_panel("backups")
+     project.unregister(backup.__class__)
  
  And for permanent fix I see the following decision. In openstack_dashboard/dashboards/project/backups/panel.py make the following changes:
  ...
  +L16: from django.conf import settings
  ...
  +L21:     if not getattr(settings, 'OPENSTACK_CINDER_FEATURES', {}).get('enable_backup', False):
  +L22:         return False
  ...
+ 
+ == SRU details for Ubuntu =
+ 
+ [Impact]
+ 
+ [Test Case]
+ Juju deploy openstack and manually test that backup panel is not visible if enable_backup is set to False.
+ 
+ [Regression Potential]
+ Low. The patch has landed upstream in master and stable/rocky and has received +2 for stable/queens. This patch has already landed in Ubuntu rocky as well.

** Description changed:

  Hi,
  
  Volumes - Backup panel is visible even if OPENSTACK_CINDER_FEATURES =
  {'enable_backup': False} in local_settings.py
  
  Meanwhile setting enable_backup to false removes an option to create
  backup of a volume in the volume drop-down options. But panel with
  backups itself stays visible for both admins and users.
  
  As a work-around I use the following customization script:
  import horizon
  from django.conf import settings
  if not getattr(settings, 'OPENSTACK_CINDER_FEATURES', {}).get('enable_backup', False):
      project = horizon.get_dashboard("project")
      backup = project.get_panel("backups")
      project.unregister(backup.__class__)
  
  And for permanent fix I see the following decision. In openstack_dashboard/dashboards/project/backups/panel.py make the following changes:
  ...
  +L16: from django.conf import settings
  ...
  +L21:     if not getattr(settings, 'OPENSTACK_CINDER_FEATURES', {}).get('enable_backup', False):
  +L22:         return False
  ...
  
  == SRU details for Ubuntu =
  
  [Impact]
+ See above.
  
  [Test Case]
  Juju deploy openstack and manually test that backup panel is not visible if enable_backup is set to False.
  
  [Regression Potential]
  Low. The patch has landed upstream in master and stable/rocky and has received +2 for stable/queens. This patch has already landed in Ubuntu rocky as well.

-- 
You received this bug notification because you are a member of Ubuntu
OpenStack, which is subscribed to Ubuntu Cloud Archive.
https://bugs.launchpad.net/bugs/1778771

Title:
  Backups panel is visible even if enable_backup is False

Status in OpenStack openstack-dashboard charm:
  Invalid
Status in Ubuntu Cloud Archive:
  Fix Released
Status in Ubuntu Cloud Archive queens series:
  Triaged
Status in Ubuntu Cloud Archive rocky series:
  Fix Released
Status in OpenStack Dashboard (Horizon):
  Fix Released
Status in horizon package in Ubuntu:
  Fix Released
Status in horizon source package in Bionic:
  Triaged
Status in horizon source package in Cosmic:
  Fix Released

Bug description:
  Hi,

  Volumes - Backup panel is visible even if OPENSTACK_CINDER_FEATURES =
  {'enable_backup': False} in local_settings.py

  Meanwhile setting enable_backup to false removes an option to create
  backup of a volume in the volume drop-down options. But panel with
  backups itself stays visible for both admins and users.

  As a work-around I use the following customization script:
  import horizon
  from django.conf import settings
  if not getattr(settings, 'OPENSTACK_CINDER_FEATURES', {}).get('enable_backup', False):
      project = horizon.get_dashboard("project")
      backup = project.get_panel("backups")
      project.unregister(backup.__class__)

  And for permanent fix I see the following decision. In openstack_dashboard/dashboards/project/backups/panel.py make the following changes:
  ...
  +L16: from django.conf import settings
  ...
  +L21:     if not getattr(settings, 'OPENSTACK_CINDER_FEATURES', {}).get('enable_backup', False):
  +L22:         return False
  ...

  == SRU details for Ubuntu =

  [Impact]
  See above.

  [Test Case]
  Juju deploy openstack and manually test that backup panel is not visible if enable_backup is set to False.

  [Regression Potential]
  Low. The patch has landed upstream in master and stable/rocky and has received +2 for stable/queens. This patch has already landed in Ubuntu rocky as well.

To manage notifications about this bug go to:
https://bugs.launchpad.net/charm-openstack-dashboard/+bug/1778771/+subscriptions



More information about the Ubuntu-openstack-bugs mailing list