mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-04-26 07:55:52 +03:00
[GH-ISSUE #182] Feature-Request: Staff users staring their own VMs #121
Labels
No labels
bug
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/webvirtcloud#121
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @lord-kyron on GitHub (Sep 13, 2018).
Original GitHub issue: https://github.com/retspen/webvirtcloud/issues/182
@catborise rise - is it too hard do add a logic decision to the start instance process. For example I exposed createing VM to my staff users, but I don't want they to see the actual compute nodes. So when they create a new VM and press the start button, I need some logic which can check the available compute nodes ram capacity for example and always start the VM to the one with more free resource.
@catborise commented on GitHub (Sep 14, 2018):
scheduling mechanism is hard and webvirtcloud does not provide any feature which is not presented in libvirt. this mechanism is "Dynamic resource scheduler" in vmware and it needs solid migration mechanism.
but we can do some simple job to workaround. while creating(not starting) instance we can check all compute's resources and pick available one to create vm on that compute. is it a solution for you?
@lord-kyron commented on GitHub (Sep 14, 2018):
Yes, it soulds perfectly fine. I just need two basic things to be done:
@lord-kyron commented on GitHub (Sep 14, 2018):
By the way @catborise you can look at my modified repo yo check how I've exposed the vm creation for my staff users
@lord-kyron commented on GitHub (Sep 18, 2018):
@catborise I will be very thankful you to take a look and help with such simple logic wheb you have time for it. It will hrlp me a lot.