Problems with the creation of a compute instance using azure cli
Hello, I am introducing the concept of MLOps and right now I have a problem when I create a compute instance from devops. In order to create the compute instance from a devops pipeline, I use the azure cli to do this with the following code:
az ml computetarget create computeinstance -g $(RESOURCE_GROUP) -w $(WORKSPACE_NAME) -n $(amlcompute.instanceName) -s $(amlcompute.instancevmSize) -v
the command creates the compute instance, but I can't use the ML notebooks as the compute doesn't appear to be available. I have searched the web and everywhere they use the same cli code to create the compute instance.
I would appreciate knowing why it doesn't work this way