Skip to content

Commit c061d2d

Browse files
Update naming
1 parent 0a0a21a commit c061d2d

8 files changed

+59
-63
lines changed

articles/machine-learning/concept-endpoints.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.author: seramasu
1010
author: rsethur
1111
ms.reviewer: laobri
1212
ms.custom: devplatv2, ignite-fall-2021
13-
ms.date: 10/21/2021
13+
ms.date: 12/22/2021
1414
#Customer intent: As an MLOps administrator, I want to understand what a managed endpoint is and why I need it.
1515
---
1616

@@ -97,7 +97,7 @@ However [managed online endpoints](#managed-online-endpoints-vs-kubernetes-onlin
9797
### Security
9898

9999
- Authentication: Key and Azure ML Tokens
100-
- Managed identity: User assigned and system assigned (managed online endpoint only)
100+
- Managed identity: User assigned and system assigned
101101
- SSL by default for endpoint invocation
102102

103103
### Autoscaling
@@ -145,15 +145,12 @@ Managed online endpoints can help streamline your deployment process. Managed on
145145

146146
:::image type="content" source="media/concept-endpoints/log-analytics-and-azure-monitor.png" alt-text="Screenshot showing Azure Monitor graph of endpoint latency":::
147147

148-
- Managed identity
149-
- Use [managed identities to access secured resources from scoring script](tutorial-deploy-managed-endpoints-using-system-managed-identity.md)
150-
151148
- View costs
152149
- Managed online endpoints let you [monitor cost at the endpoint and deployment level](how-to-view-online-endpoints-costs.md)
153150

154151
:::image type="content" source="media/concept-endpoints/endpoint-deployment-costs.png" alt-text="Screenshot cost chart of an endpoint and deployment":::
155152

156-
For a step-by-step tutorial, see [How to deploy managed online endpoints](how-to-deploy-managed-online-endpoints.md).
153+
For a step-by-step tutorial, see [How to deploy online endpoints](how-to-deploy-managed-online-endpoints.md).
157154

158155
## What are batch endpoints (preview)?
159156

@@ -197,10 +194,10 @@ Specify the storage output location to any datastore and path. By default, batch
197194

198195
## Next steps
199196

200-
- [How to deploy managed online endpoints with the Azure CLI](how-to-deploy-managed-online-endpoints.md)
197+
- [How to deploy online endpoints with the Azure CLI](how-to-deploy-managed-online-endpoints.md)
201198
- [How to deploy batch endpoints with the Azure CLI](how-to-use-batch-endpoint.md)
202-
- [How to use managed online endpoints with the studio](how-to-use-managed-online-endpoint-studio.md)
199+
- [How to use online endpoints with the studio](how-to-use-managed-online-endpoint-studio.md)
203200
- [Deploy models with REST (preview)](how-to-deploy-with-rest.md)
204201
- [How to monitor managed online endpoints](how-to-monitor-online-endpoints.md)
205-
- [How to view online endpoint costs](how-to-view-online-endpoints-costs.md)
202+
- [How to view managed online endpoint costs](how-to-view-online-endpoints-costs.md)
206203
- [Manage and increase quotas for resources with Azure Machine Learning](how-to-manage-quotas.md#azure-machine-learning-managed-online-endpoints-preview)

articles/machine-learning/how-to-access-resources-from-endpoints-managed-identities.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
---
22
title: Access Azure resources from managed endpoint
33
titleSuffix: Azure Machine Learning
4-
description: Securely access Azure resources for your machine learning model deployment from a managed online endpoint with a system-assigned or user-assigned managed identity.
4+
description: Securely access Azure resources for your machine learning model deployment from an online endpoint with a system-assigned or user-assigned managed identity.
55
services: machine-learning
66
ms.service: machine-learning
77
ms.subservice: core
88
ms.author: seramasu
99
ms.reviewer: laobri
1010
author: rsethur
11-
ms.date: 10/21/2021
11+
ms.date: 12/22/2021
1212
ms.topic: how-to
1313
ms.custom: devplatv2
1414

15-
# Customer intent: As a data scientist, I want to securely access Azure resources for my machine learning model deployment with a managed online endpoint and managed identity.
15+
# Customer intent: As a data scientist, I want to securely access Azure resources for my machine learning model deployment with an online endpoint and managed identity.
1616
---
1717

18-
# Access Azure resources from a managed online endpoint (preview) with a managed identity
18+
# Access Azure resources from an online endpoint (preview) with a managed identity
1919

20-
Learn how to access Azure resources from your scoring script with a managed online endpoint and either a system-assigned managed identity or a user-assigned managed identity.
20+
Learn how to access Azure resources from your scoring script with an online endpoint and either a system-assigned managed identity or a user-assigned managed identity.
2121

2222
Managed endpoints (preview) allow Azure Machine Learning to manage the burden of provisioning your compute resource and deploying your machine learning model. Typically your model needs to access Azure resources such as the Azure Container Registry or your blob storage for inferencing; with a managed identity you can access these resources without needing to manage credentials in your code. [Learn more about managed identities](../active-directory/managed-identities-azure-resources/overview.md).
2323

24-
This guide assumes you don't have a managed identity, a storage account or a managed online endpoint. If you already have these components, skip to the [give access permission to the managed identity](#give-access-permission-to-the-managed-identity) section.
24+
This guide assumes you don't have a managed identity, a storage account or an online endpoint. If you already have these components, skip to the [give access permission to the managed identity](#give-access-permission-to-the-managed-identity) section.
2525

2626
[!INCLUDE [preview disclaimer](../../includes/machine-learning-preview-generic-disclaimer.md)]
2727

@@ -184,9 +184,9 @@ Then, upload file in container.
184184
185185
---
186186
187-
## Create a managed online endpoint
187+
## Create an online endpoint
188188
189-
The following code creates a managed online endpoint without specifying a deployment.
189+
The following code creates an online endpoint without specifying a deployment.
190190
191191
# [System-assigned managed identity](#tab/system-identity)
192192
When you create a managed endpoint, a system-assigned managed identity is created for the endpoint by default.
@@ -200,7 +200,7 @@ Check the status of the endpoint with the following.
200200
201201
::: code language="azurecli" source="~/azureml-examples-main/cli/deploy-managed-online-endpoint-access-resource-sai.sh" id="check_endpoint_Status" :::
202202
203-
If you encounter any issues, see [Troubleshooting managed online endpoints deployment and scoring (preview)](how-to-troubleshoot-managed-online-endpoints.md).
203+
If you encounter any issues, see [Troubleshooting online endpoints deployment and scoring (preview)](how-to-troubleshoot-managed-online-endpoints.md).
204204
205205
# [User-assigned managed identity](#tab/user-identity)
206206
@@ -210,7 +210,7 @@ Check the status of the endpoint with the following.
210210
211211
::: code language="azurecli" source="~/azureml-examples-main/cli/deploy-managed-online-endpoint-access-resource-uai.sh" id="check_endpoint_Status" :::
212212
213-
If you encounter any issues, see [Troubleshooting managed online endpoints deployment and scoring (preview)](how-to-troubleshoot-managed-online-endpoints.md).
213+
If you encounter any issues, see [Troubleshooting online endpoints deployment and scoring (preview)](how-to-troubleshoot-managed-online-endpoints.md).
214214
215215
---
216216
@@ -271,7 +271,7 @@ Refer to the following script to understand how to use your identity token to ac
271271
272272
## Create a deployment with your configuration
273273
274-
Create a deployment that's associated with the managed endpoint. [Learn more about deploying to managed online endpoints](how-to-deploy-managed-online-endpoints.md).
274+
Create a deployment that's associated with the managed endpoint. [Learn more about deploying to online endpoints](how-to-deploy-managed-online-endpoints.md).
275275
276276
>[!WARNING]
277277
> This deployment can take approximately 8-14 minutes depending on whether the underlying environment/image is being built for the first time. Subsequent deployments using the same environment will go quicker.
@@ -360,7 +360,7 @@ If you don't plan to continue using the deployed endpoint and storage, delete th
360360
361361
## Next steps
362362
363-
* [Deploy and score a machine learning model by using a managed online endpoint (preview)](how-to-deploy-managed-online-endpoints.md).
363+
* [Deploy and score a machine learning model by using a online endpoint (preview)](how-to-deploy-managed-online-endpoints.md).
364364
* For more on deployment, see [Safe rollout for online endpoints (preview)](how-to-safely-rollout-managed-endpoints.md).
365365
* For more information on using the CLI, see [Use the CLI extension for Azure Machine Learning](reference-azure-machine-learning-cli.md).
366366
* To see which compute resources you can use, see [Managed online endpoints SKU list (preview)](reference-managed-online-endpoints-vm-sku-list.md).

articles/machine-learning/how-to-deploy-automl-endpoint.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Deploy an AutoML model with a managed online endpoint (preview)
2+
title: Deploy an AutoML model with an online endpoint (preview)
33
titleSuffix: Azure Machine Learning
44
description: Learn to deploy your AutoML model as a web service that's automatically managed by Azure.
55
services: machine-learning
@@ -8,7 +8,7 @@ ms.subservice: core
88
ms.author: ssambare
99
ms.reviewer: laobri
1010
author: shivanissambare
11-
ms.date: 10/21/2021
11+
ms.date: 12/22/2021
1212
ms.topic: how-to
1313
ms.custom: how-to, devplatv2
1414
---
@@ -115,7 +115,7 @@ Create a directory called `src/` and place the scoring file you downloaded into
115115

116116
## Create the endpoint and deployment yaml file
117117

118-
To create a managed online endpoint from the command line, you'll need to create an *endpoint.yml* and a *deployment.yml* file. The following code, taken from the [Azure Machine Learning Examples repo](https://github.com/Azure/azureml-examples) shows the _endpoints/online/managed/sample/_, which captures all the required inputs:
118+
To create an online endpoint from the command line, you'll need to create an *endpoint.yml* and a *deployment.yml* file. The following code, taken from the [Azure Machine Learning Examples repo](https://github.com/Azure/azureml-examples) shows the _endpoints/online/managed/sample/_, which captures all the required inputs:
119119

120120
__automl_endpoint.yml__
121121

@@ -156,5 +156,5 @@ After you create a deployment, you can score it as described in [Invoke the endp
156156
157157
## Next steps
158158
159-
- [Troubleshooting managed online endpoints deployment](how-to-troubleshoot-managed-online-endpoints.md)
159+
- [Troubleshooting online endpoints deployment](how-to-troubleshoot-managed-online-endpoints.md)
160160
- [Safe rollout for online endpoints](how-to-safely-rollout-managed-endpoints.md)

articles/machine-learning/how-to-deploy-custom-container.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Deploy a custom container as a managed online endpoint
2+
title: Deploy a custom container as an online endpoint
33
titleSuffix: Azure Machine Learning
44
description: Learn how to use a custom container to use open-source servers in Azure Machine Learning.
55
services: machine-learning
@@ -8,14 +8,14 @@ ms.subservice: mlops
88
ms.author: ssambare
99
author: shivanissambare
1010
ms.reviewer: larryfr
11-
ms.date: 10/21/2021
11+
ms.date: 12/22/2021
1212
ms.topic: how-to
1313
ms.custom: deploy, devplatv2
1414
---
1515

16-
# Deploy a TensorFlow model served with TF Serving using a custom container in a managed online endpoint (preview)
16+
# Deploy a TensorFlow model served with TF Serving using a custom container in an online endpoint (preview)
1717

18-
Learn how to deploy a custom container as a managed online endpoint in Azure Machine Learning.
18+
Learn how to deploy a custom container as an online endpoint in Azure Machine Learning.
1919

2020
Custom container deployments can use web servers other than the default Python Flask server used by Azure Machine Learning. Users of these deployments can still take advantage of Azure Machine Learning's built-in monitoring, scaling, alerting, and authentication.
2121

@@ -183,5 +183,5 @@ az ml model delete -n tfserving-mounted --version 1
183183
## Next steps
184184

185185
- [Safe rollout for online endpoints (preview)](how-to-safely-rollout-managed-endpoints.md)
186-
- [Troubleshooting managed online endpoints deployment](./how-to-troubleshoot-online-endpoints.md)
186+
- [Troubleshooting online endpoints deployment](./how-to-troubleshoot-online-endpoints.md)
187187
- [Torch serve sample](https://github.com/Azure/azureml-examples/blob/main/cli/deploy-torchserve.sh)

articles/machine-learning/how-to-deploy-managed-online-endpoints.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.subservice: mlops
88
ms.author: seramasu
99
ms.reviewer: laobri
1010
author: rsethur
11-
ms.date: 10/21/2021
11+
ms.date: 12/22/2021
1212
ms.topic: how-to
1313
ms.custom: how-to, devplatv2, ignite-fall-2021
1414
---
@@ -139,7 +139,7 @@ As noted earlier, the `code_configuration.scoring_script` must have an `init()`
139139

140140
## Deploy and debug locally by using local endpoints
141141

142-
To save time debugging, we *highly recommend* that you test-run your endpoint locally. For more, see [Debug managed online endpoints locally in Visual Studio Code](how-to-debug-managed-online-endpoints-visual-studio-code.md).
142+
To save time debugging, we *highly recommend* that you test-run your endpoint locally. For more, see [Debug online endpoints locally in Visual Studio Code](how-to-debug-managed-online-endpoints-visual-studio-code.md).
143143

144144
> [!NOTE]
145145
> * To deploy locally, [Docker Engine](https://docs.docker.com/engine/install/) must be installed.
@@ -163,7 +163,7 @@ Now, create a deployment named `blue` under the endpoint.
163163
The `--local` flag directs the CLI to deploy the endpoint in the Docker environment.
164164

165165
> [!TIP]
166-
> Use Visual Studio Code to test and debug your endpoints locally. For more information, see [debug managed online endpoints locally in Visual Studio Code](how-to-debug-managed-online-endpoints-visual-studio-code.md).
166+
> Use Visual Studio Code to test and debug your endpoints locally. For more information, see [debug online endpoints locally in Visual Studio Code](how-to-debug-managed-online-endpoints-visual-studio-code.md).
167167
168168
### Verify the local deployment succeeded
169169

@@ -200,9 +200,9 @@ In the example *score.py* file, the `run()` method logs some output to the conso
200200

201201
:::code language="azurecli" source="~/azureml-examples-main/cli/deploy-local-endpoint.sh" ID="get_logs":::
202202

203-
## Deploy your managed online endpoint to Azure
203+
## Deploy your online endpoint to Azure
204204

205-
Next, deploy your managed online endpoint to Azure.
205+
Next, deploy your online endpoint to Azure.
206206

207207
### Deploy to Azure
208208

@@ -223,7 +223,7 @@ This deployment might take up to 15 minutes, depending on whether the underlying
223223
> [!TIP]
224224
> * If you prefer not to block your CLI console, you may add the flag `--no-wait` to the command. However, this will stop the interactive display of the deployment status.
225225
>
226-
> * Use [Troubleshooting managed online endpoints deployment (preview)](./how-to-troubleshoot-online-endpoints.md) to debug errors.
226+
> * Use [Troubleshooting online endpoints deployment (preview)](./how-to-troubleshoot-online-endpoints.md) to debug errors.
227227
228228
### Check the status of the deployment
229229

@@ -336,10 +336,10 @@ If you aren't going use the deployment, you should delete it by running the foll
336336
To learn more, review these articles:
337337
338338
- [Deploy models with REST (preview)](how-to-deploy-with-rest.md)
339-
- [Create and use managed online endpoints (preview) in the studio](how-to-use-managed-online-endpoint-studio.md)
339+
- [Create and use online endpoints (preview) in the studio](how-to-use-managed-online-endpoint-studio.md)
340340
- [Safe rollout for online endpoints (preview)](how-to-safely-rollout-managed-endpoints.md)
341341
- [How to autoscale managed online endpoints](how-to-autoscale-endpoints.md)
342342
- [Use batch endpoints (preview) for batch scoring](how-to-use-batch-endpoint.md)
343343
- [View costs for an Azure Machine Learning managed online endpoint (preview)](how-to-view-online-endpoints-costs.md)
344-
- [Access Azure resources with a managed online endpoint and managed identity (preview)](how-to-access-resources-from-endpoints-managed-identities.md)
345-
- [Troubleshoot managed online endpoints deployment](how-to-troubleshoot-online-endpoints.md)
344+
- [Access Azure resources with a online endpoint and managed identity (preview)](how-to-access-resources-from-endpoints-managed-identities.md)
345+
- [Troubleshoot online endpoints deployment](how-to-troubleshoot-online-endpoints.md)

articles/machine-learning/how-to-deploy-with-rest.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
2-
title: "Deploy models using managed online endpoints with REST APIs (preview)"
2+
title: "Deploy models using online endpoints with REST APIs (preview)"
33
titleSuffix: Azure Machine Learning
4-
description: Learn how to deploy models using managed online endpoints with REST APIs.
4+
description: Learn how to deploy models using online endpoints with REST APIs.
55
services: machine-learning
66
ms.service: machine-learning
77
ms.subservice: core
88
ms.topic: how-to
99

1010
author: rsethur
1111
ms.author: seramasu
12-
ms.date: 10/21/2021
12+
ms.date: 12/22/2021
1313
ms.reviewer: laobri
1414
ms.custom: devplatv2
1515
---
@@ -44,10 +44,11 @@ In this article, you learn how to use the new REST APIs to:
4444
4545
:::code language="rest-api" source="~/azureml-examples-main/cli/deploy-rest.sh" id="set_endpoint_name":::
4646

47-
## Azure Machine Learning managed online endpoints
48-
Managed online endpoints (preview) allow you to deploy your model without having to create and manage the underlying infrastructure. In this article, you'll create an online endpoint and deployment, and validate it by invoking it. But first you'll have to register the assets needed for deployment, including model, code, and environment.
47+
## Azure Machine Learning online endpoints
4948

50-
There are many ways to create an Azure Machine Learning online endpoints [including the Azure CLI](how-to-deploy-managed-online-endpoints.md), and visually with [the studio](how-to-use-managed-online-endpoint-studio.md). The following example a managed online endpoint with the REST API.
49+
Online endpoints (preview) allow you to deploy your model without having to create and manage the underlying infrastructure as well as Kubernetes clusters. In this article, you'll create an online endpoint and deployment, and validate it by invoking it. But first you'll have to register the assets needed for deployment, including model, code, and environment.
50+
51+
There are many ways to create an Azure Machine Learning online endpoints [including the Azure CLI](how-to-deploy-managed-online-endpoints.md), and visually with [the studio](how-to-use-managed-online-endpoint-studio.md). The following example an online endpoint with the REST API.
5152

5253
## Create machine learning assets
5354

@@ -143,8 +144,8 @@ If you aren't going use the deployment, you should delete it with the below comm
143144

144145
* Learn how to deploy your model [using the Azure CLI](how-to-deploy-managed-online-endpoints.md).
145146
* Learn how to deploy your model [using studio](how-to-use-managed-online-endpoint-studio.md).
146-
* Learn to [Troubleshoot managed online endpoints deployment and scoring (preview)](how-to-troubleshoot-managed-online-endpoints.md)
147-
* Learn how to [Access Azure resources with a managed online endpoint and managed identity (preview)](how-to-access-resources-from-endpoints-managed-identities.md)
147+
* Learn to [Troubleshoot online endpoints deployment and scoring (preview)](how-to-troubleshoot-managed-online-endpoints.md)
148+
* Learn how to [Access Azure resources with a online endpoint and managed identity (preview)](how-to-access-resources-from-endpoints-managed-identities.md)
148149
* Learn how to [monitor online endpoints](how-to-monitor-online-endpoints.md).
149150
* Learn [Safe rollout for online endpoints (preview)](how-to-safely-rollout-managed-endpoints.md).
150151
* [View costs for an Azure Machine Learning managed online endpoint (preview)](how-to-view-online-endpoints-costs.md).

0 commit comments

Comments
 (0)