How do we know if an azureml image is being used?
When we create a Machine Learning Workspace, we can set an existing Container Registry that will be used by AML service. But we have been flagged of packages under a given image that needs to be fixed. Example:
#table cols="3"
Package Installed_Version Required_Version
libxml2 2.9.13+dfsg-1ubuntu0.8 2.9.13+dfsg-1ubuntu0.9
But we have lots of images available since we use IaC (Bicep) to deploy our resources in some environments. So our plan is to delete this images programmatically so that we try to avoid this kind of issue, otherwise images will be there over and over, and the list will only increase. Example:
Now, how do I know if AML is using that image or not? If I am safe to delete those images and not break any working process?