You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-troubleshoot-online-endpoints.md
+21-2Lines changed: 21 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -276,9 +276,28 @@ To run the `score.py` provided as part of the deployment, Azure creates a contai
276
276
277
277
### ERROR: ResourceNotFound
278
278
279
-
This error occurs when Azure Resource Manager can't find a required resource. For example, you will receive this error if a storage account was referred to but cannot be found at the path on which it was specified. Be sure to double check resources that might have been supplied by exact path or the spelling of their names.
279
+
Below is a list of reasons you might run into this error:
280
+
281
+
*[Azure Resource Manager cannot find a required resource](#resource-manager-cannot-find-a-resource)
282
+
*[Azure Container Registry is private or otherwise inaccessible](#container-registry-authorization-error)
283
+
284
+
#### Resource Manager cannot find a resource
285
+
286
+
This error occurs when Azure Resource Manager can't find a required resource. For example, you will receive this error if a storage account was referred to but is not able to be found at the specified path. Be sure to double-check the spelling of exact paths or resource names.
287
+
288
+
For more information, see [Resolve Resource Not Found Errors](../azure-resource-manager/troubleshooting/error-not-found.md).
289
+
290
+
#### Container registry authorization error
291
+
292
+
This error occurs when an image belonging to a private or otherwise inaccessible container registry was supplied for deployment.
293
+
At this time, our APIs cannot accept private registry credentials.
294
+
295
+
To mitigate this error, either ensure that the container registry is **not private** or follow the following steps:
296
+
1. Grant your private registry's `acrPull` role to the system identity of your online enpdoint.
297
+
1. In your environment definition, specify the address of your private image as well as the additional instruction to not modify (build) the image.
280
298
281
-
For more information, see [Resolve resource not found errors](../azure-resource-manager/troubleshooting/error-not-found.md).
299
+
If the mitigation is successful, the image will not require any building and the final image address will simply be the given image address.
300
+
At deployment time, your online endpoint's system identity will pull the image from the private registry.
0 commit comments