How to get RackSpace servers with a specific tag?

Trying to get all the servers registered in our RackSpace account under a specific tag.

Using Python bindings for RackSpace for OpenStack pyrax, we did not find a way to do this. Is there a way to achieve this with this library, or is there another Python library that would do this?

Many thanks!

+5
source share
2 answers

I am an author pyrax. There is currently no way to access tag information via pyrax, as this information is not returned from the API. But I agree that this will be useful information, so I speak with the various participating teams to find out what might be possible. When I hear something, I will continue here.

+8
source

It seems to me that metadata is currently available for cloud servers, which seem to contain server labels.

You can display servers using pxrax and filter metadata.

0
source

All Articles