-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Add list of virtual machines to the cluster detail page #5425
Comments
Clusters can have two types of resources assigned to them: hosts and virtual machines. Currently, the cluster view shows only assigned hosts. We could also display virtual machines, however the pagination system can handle only one type of object. So, we would need to decide for which type of object we'd support pagination. Typically what we do in that case is to show each type of child object in a separate tab. (You can see an example of this when viewing a prefix, which can have both child prefixes and IP addresses.) That seems like a reasonable approach in this case. |
It doesn't look like the current device table has pagination? |
If not, it should. (All tables should.) |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. NetBox is governed by a small group of core maintainers which means not all opened issues may receive direct feedback. Please see our contributing guide. |
I implemented devices and virtual machines in separate tabs, but have not opened a PR. This is because It does exactly the opposite of the intention of the feature request - which was to reduce the number of clicks required to view the cluster details. Also, the resulting cluster detail page ends up pretty empty so it ends up showing less details about the cluster than previously, which also seems to run counter to the intention of the cluster detail page. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. NetBox is governed by a small group of core maintainers which means not all opened issues may receive direct feedback. Please see our contributing guide. |
Marking this as blocked by the v2.12 UI work (#5893). |
Environment
Proposed Functionality
Adding the list of virtual machines in a given cluster to the cluster detail page, underneath the list of host devices. Also, adding an "add virtual machine" button to that table to quickly add virtual machines to a cluster (as with the "add devices" button on the devices table).
Use Case
Having the list of virtual machines on the cluster page saves having to click the link to the virtual machines page every time you want to see the virtual machines within a cluster. This is a very common operation for us and one of the top complaints of our users.
Database Changes
None
External Dependencies
None
The text was updated successfully, but these errors were encountered: