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
# Deploy a model to Azure Container Instances with CLI (v1)
@@ -21,12 +21,12 @@ ms.date: 11/04/2022
21
21
Learn how to use Azure Machine Learning to deploy a model as a web service on Azure Container Instances (ACI). Use Azure Container Instances if you:
22
22
23
23
- prefer not to manage your own Kubernetes cluster
24
-
- Are OK with having only a single replica of your service, which may impact uptime
24
+
- Are OK with having only a single replica of your service, which might affect uptime
25
25
26
26
For information on quota and region availability for ACI, see [Quotas and region availability for Azure Container Instances](../../container-instances/container-instances-quotas.md) article.
27
27
28
28
> [!IMPORTANT]
29
-
> It is highly advised to debug locally before deploying to the web service, for more information see [Debug Locally](how-to-troubleshoot-deployment-local.md)
29
+
> It is highly advised to debug locally before deploying to the web service, for more information, see [Debug Locally](how-to-troubleshoot-deployment-local.md)
30
30
>
31
31
> You can also refer to Azure Machine Learning - [Deploy to Local Notebook](https://github.com/Azure/MachineLearningNotebooks/tree/master/how-to-use-azureml)
32
32
@@ -52,7 +52,7 @@ For information on quota and region availability for ACI, see [Quotas and region
52
52
53
53
## Limitations
54
54
55
-
When your Azure Machine Learning workspace is configured with a private endpoint, deploying to Azure Container Instances in a VNet is not supported. Instead, consider using a [Managed online endpoint with network isolation](../how-to-secure-online-endpoint.md).
55
+
When your Azure Machine Learning workspace is configured with a private endpoint, deploying to Azure Container Instances in a virtual network isn't supported. Instead, consider using a [Managed online endpoint with network isolation](../how-to-secure-online-endpoint.md).
56
56
57
57
## Deploy to ACI
58
58
@@ -103,11 +103,11 @@ The entries in the `deploymentconfig.json` document map to the parameters for [A
103
103
|  `memoryInGB`|`memory_gb`| The amount of memory (in GB) to allocate for this web service. Default, `0.5`|
104
104
|`location`|`location`| The Azure region to deploy this Webservice to. If not specified the Workspace location will be used. More details on available regions can be found here: [ACI Regions](https://azure.microsoft.com/global-infrastructure/services/?regions=all&products=container-instances)|
105
105
|`authEnabled`|`auth_enabled`| Whether to enable auth for this Webservice. Defaults to False |
106
-
|`sslEnabled`|`ssl_enabled`| Whether to enable SSL for this Webservice. Defaults to False. |
106
+
|`sslEnabled`|`ssl_enabled`| Whether to enable TLS for this Webservice. Defaults to False. |
107
107
|`appInsightsEnabled`|`enable_app_insights`| Whether to enable AppInsights for this Webservice. Defaults to False |
108
-
|`sslCertificate`|`ssl_cert_pem_file`| The cert file needed if SSL is enabled |
109
-
|`sslKey`|`ssl_key_pem_file`| The key file needed if SSL is enabled |
110
-
|`cname`|`ssl_cname`| The cname for if SSL is enabled |
108
+
|`sslCertificate`|`ssl_cert_pem_file`| The cert file needed if TLS is enabled |
109
+
|`sslKey`|`ssl_key_pem_file`| The key file needed if TLS is enabled |
110
+
|`cname`|`ssl_cname`| The CNAME for if TLS is enabled |
111
111
|`dnsNameLabel`|`dns_name_label`| The dns name label for the scoring endpoint. If not specified a unique dns name label will be generated for the scoring endpoint. |
112
112
113
113
The following JSON is an example deployment configuration for use with the CLI:
0 commit comments