Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

webadmin: added filter to display only not in use LUNs #1006

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

ekononov-dev
Copy link
Contributor

Changes introduced with this PR

An existing problem:
When creating a new storage domain, when selecting a LUN, both unused LUNs and used LUNs are shown in the list. Since the list of LUNs can be very large, it is very difficult to search for unused LUNs that can be selected for a storage domain. This happens in the following cases:
- selecting a LUN when creating a new storage domain;
- selecting a LUN when editing an existing storage domain;
- selecting a LUN when creating RDM disks for a VM.

Problem solving:
The filter "Hide used LUNs" is added to the list of LUNs. When this filter is checked, the list shows only unused LUNs that can be added to the storage domain. This filter is checked by default.

Implementation features:
The implementation allows you to expand the LUNs filter, that is, to add additional filter fields.
All interfaces and classes listed below are located in the package org.ovirt.engine.ui.common.widget.ui common.storage.

The ModelFilter interface is the basic filter interface for any entities extending EntityModel. Two filters for LunModel implement the ModelFilter interface: LunFilter (LUN filter itself) and SanTargetFilter (SanTarget filter by the LUN property, which are located inside SanTarget). These filters also extend the basic LUN filter class LunFilterBase, which defines the fields of the LUN filter.

For adding additional LUN filter fields:
- add new filter fields to LunFilterBase;
- extend the LunFilterBase#needFilter() function by checking for new filter fields;
- extend the ModelFilter#filter() function with new filter fields;
- add new filter fields to the UI.

Are you the owner of the code you are sending in, or do you have permission of the owner?

Yes

An existing problem:
When creating a new storage domain, when selecting a LUN, both unused LUNs and used LUNs are shown in the list. Since the list of LUNs can be very large, it is very difficult to search for unused LUNs that can be selected for a storage domain.
This happens in the following cases:
	- selecting a LUN when creating a new storage domain;
	- selecting a LUN when editing an existing storage domain;
	- selecting a LUN when creating RDM disks for a VM.

Problem solving:
The filter "Hide used LUNs" is added to the list of LUNs. When this filter is checked, the list shows only unused LUNs that can be added to the storage domain. This filter is checked by default.

Signed-off-by: Evgeniy Kononov <[email protected]>
@ekononov-dev ekononov-dev requested a review from sgratch as a code owner April 4, 2025 12:50
@dupondje
Copy link
Member

dupondje commented Apr 4, 2025

I like the idea. Will try to review asap! :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants