We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The Azure ARM driver only lists 50 nodes in a subscription.
The function list_nodes() of the Azure ARM driver only lists 50 nodes when the Azure Portal shows more than 50 VMs.
list_nodes()
This is probably caused by missing pagination here: https://github.com/apache/libcloud/blob/trunk/libcloud/compute/drivers/azure_arm.py#L474
According to the documentation, there should be a property nextLink in the response: https://learn.microsoft.com/en-us/rest/api/compute/virtual-machines/list-all
nextLink
Libcloud version: 3.6.1 Python version: 3.10 Operating system: Ubuntu 20.04
The text was updated successfully, but these errors were encountered:
Add changelog entry for apache#1824 apache#1850.
09cc6c4
Resolved via #1850.
Sorry, something went wrong.
No branches or pull requests
Summary
The Azure ARM driver only lists 50 nodes in a subscription.
Detailed Information
The function
list_nodes()
of the Azure ARM driver only lists 50 nodes when the Azure Portal shows more than 50 VMs.This is probably caused by missing pagination here:
https://github.com/apache/libcloud/blob/trunk/libcloud/compute/drivers/azure_arm.py#L474
According to the documentation, there should be a property
nextLink
in the response:https://learn.microsoft.com/en-us/rest/api/compute/virtual-machines/list-all
Libcloud version: 3.6.1
Python version: 3.10
Operating system: Ubuntu 20.04
The text was updated successfully, but these errors were encountered: