You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I defined a role with the permissions mentioned in README.md. This worked for a while (at least with Satellite 6.3, I observe the issue with 6.4 and 6.5). katello-attach-subscription searches for hypervisors by leverating /api/organizations/1/hosts?search=hypervisor%3Dtrue. This returns an emtpy result when the user only has the described permissions:
This call works with full (Admin) permissions though. The search term hypervisor = true works in the UI with limited permissions, but the UI uses /api/hosts?search=hypervisor%3Dtrue&page=1 (no /organizations/1):
{
"total": 24,
"subtotal": 4,
"page": 1,
"per_page": 50,
"search": "hypervisor=true",
"sort": {
"by": null,
"order": null
},
"results": [
//elements removed in this example
]
The missing hypervisor list leads doesn't allow kas to attach subscriptions because it is not aware of any hypervisor.
Searching for Hypervisors
Completed hypervisor collection.
Hypervisors entry: 0
The text was updated successfully, but these errors were encountered:
I defined a role with the permissions mentioned in README.md. This worked for a while (at least with Satellite 6.3, I observe the issue with 6.4 and 6.5).
katello-attach-subscription
searches for hypervisors by leverating/api/organizations/1/hosts?search=hypervisor%3Dtrue
. This returns an emtpy result when the user only has the described permissions:This call works with full (Admin) permissions though. The search term
hypervisor = true
works in the UI with limited permissions, but the UI uses/api/hosts?search=hypervisor%3Dtrue&page=1
(no/organizations/1
):The missing hypervisor list leads doesn't allow kas to attach subscriptions because it is not aware of any hypervisor.
The text was updated successfully, but these errors were encountered: