- This topic has 3 replies, 3 voices, and was last updated 1 month ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.
Home › Forums › FABRIC General Questions and Discussion › List of OS supported
Hi,
Where can I find the list of Linux versions supported and their respective image names?
Thank you,
Regards,
Sourya Saha
It should be possible via fablib.get_image_names()
https://fabric-fablib.readthedocs.io/en/latest/fablib.html#fabrictestbed_extensions.fablib.fablib.fablib.get_image_names
# List available images (this step is optional)
available_images = fablib.get_image_names()
print(f’Available images are: {available_images}’)
or in the portal create slice view (attached).
Perfect. Thank you so much.