Bug 1578478 - Manila Horizon UI Plugin is not Loading in Horizon
Summary: Manila Horizon UI Plugin is not Loading in Horizon
Keywords:
Status: CLOSED DUPLICATE of bug 1554935
Alias: None
Product: Red Hat OpenStack
Classification: Red Hat
Component: openstack-manila-ui
Version: 13.0 (Queens)
Hardware: Unspecified
OS: Unspecified
urgent
urgent
Target Milestone: z2
: 13.0 (Queens)
Assignee: Victoria Martinez de la Cruz
QA Contact: Dustin Schoenbrun
URL:
Whiteboard:
Depends On:
Blocks: 1554935
TreeView+ depends on / blocked
 
Reported: 2018-05-15 16:47 UTC by Dustin Schoenbrun
Modified: 2018-07-20 18:56 UTC (History)
12 users (show)

Fixed In Version: openstack-manila-ui-2.13.0-4.el7ost
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
Environment:
Last Closed: 2018-07-20 18:56:50 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
RDO 14050 0 None queens-rdo: MERGED openstack/manila-ui-distgit: Copy instead of move configuration files for manila-ui (I7e50aa863441794c53bff790db5f11536e... 2018-07-19 01:50:05 UTC

Description Dustin Schoenbrun 2018-05-15 16:47:59 UTC
Description of problem:
When installing Manila and Horizon, the Manila Horizon UI Plugin seems to not load correctly. There is supposed to be a section for managing Manila resources but it does not load. 

Version-Release number of selected component (if applicable):
openstack-manila-ui-2.13.0-3.el7ost.noarch
openstack-dashboard-13.0.1-0.20180411230905.c51a46e.el7ost.noarch

How reproducible:
100%

Steps to Reproduce:
1. Deploy OSP-13 with Infrared ensuring that the configuration of Manila is enabled.
2. Log into the Horizon UI and log in with any user. 
3. Observe that there is no Share tab available in the UI.

Actual results:
There is no share tab available for any user in the Horizon UI.

Expected results:
The Manila UI plugin shall be available as a tab within the Horizon UI.

Additional info:
This issue seems to effect every UI plugin, such as the Neutron LBaas and the Sahara plugins. It's possible that there is either a plugin that is failing to load, causing all others to fail, or something within the plugin framework itself.

Anecdotally, I checked out a Packstack all-in-one deployment without containers setup with Manila and Sahara and both the Manila and Sahara UI plugins were present in the UI. Also of note the LBaaS plugin was not present in this deployment.

Comment 1 Vince Green 2018-05-22 13:36:53 UTC
The problem appears to be missing files in the Horizon container/image on the controller.  There are broken sym links in /etc/openstack-dashboard/enabled/ that point to /usr/share/openstack-dashboard/openstack_dashboard/local/enabled/, which don't have any _80_manila* and _90??_manila* files.

The manila-ui plugin can be loaded as a work-around by:
1) Copy the files from the controller to the horizon docker overlay directory,
2) restart the horizon container, 
3) ssh/forward to the server and load horizon

===================
Help commands for work-around above:
On the controller:
docker inspect horizon | grep overlay
"MergedDir": "/var/lib/docker/overlay2/36bf3b5286d6e15763b818c5328b2d20e3ea461a93ba32fbd6f85daa43904b87/merged

In the container overlay directory that didn’t have the correct files
/var/lib/docker/overlay2/36bf3b5286d6e15763b818c5328b2d20e3ea461a93ba32fbd6f85daa43904b87/merged/usr/share/openstack-dashboard/openstack_dashboard/local/enabled

cp /usr/share/openstack-dashboard/openstack_dashboard/local/enabled/_80* .
cp /usr/share/openstack-dashboard/openstack_dashboard/local/enabled/_90* .

docker restart horizon
==================

We need to get the horizon images updated with the missing files.

Comment 3 Jon Schlueter 2018-05-23 19:37:54 UTC
openstack-manila-ui-2.13.0-3.el7ost is most recent build

Victoria Martinez de la Cruz <victoria> did last tweak to the package to resolve issue where it would not install standalone

Comment 4 Vince Green 2018-05-24 14:55:25 UTC
From Radek Dopieralski, "the files are not missing. They are intentionally deleted by Kolla to disable the plugin by this script: https://github.com/openstack/kolla/tree/master/docker/horizon  — and they are only put back if the plugin has been enabled in the heat templates — in our case, in this file: https://github.com/openstack/tripleo-heat-templates/blob/master/docker/services/horizon.yaml#L152"

When looking at the undercloud horizon.yaml file for this deployment, though, we see that it is enabled.
[stack@undercloud-0 services]$ cat horizon.yaml | grep ENABLE_MANILA
              - ENABLE_MANILA=yes
[stack@undercloud-0 services]$ pwd
/usr/share/openstack-tripleo-heat-templates/docker/services

Comment 6 Radomir Dopieralski 2018-05-29 06:32:33 UTC
Kolla always deletes all the enabled files, and then, if a plugin is enabled in the configuration, puts them back.
Looking at the code that is supposed to put those files back:

https://github.com/openstack/kolla/blob/master/docker/horizon/extend_start.sh#L136-L142

It looks for them in /usr/lib/python2.7/site-packages/manila_ui/local/enabled/ — that's where the files are in the repository, but they are missing from our RPM package, probably because they have been moved to /usr/share/openstack-dashboard/openstack_dashboard/local/enabled/

One possible solution is to copy those files instead of moving them when creating the RPM, so that they are included in the RPM where Kolla expects them.

Another way would be to add a line similar to https://github.com/openstack/kolla/blob/master/docker/horizon/Dockerfile.j2#L44 that works around this problem for the Sahara plugin.

Comment 7 Victoria Martinez de la Cruz 2018-07-20 18:56:50 UTC

*** This bug has been marked as a duplicate of bug 1554935 ***


Note You need to log in before you can comment on or make changes to this bug.