Skip to content

Commit af593c2

Browse files
Merge pull request #280468 from Blackmist/208361-fresh
freshness
2 parents e85ce60 + a365099 commit af593c2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/machine-learning/v1/how-to-deploy-azure-container-instance.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.custom: UpdateFrequency5, deploy, cliv1, sdkv1
1010
ms.author: larryfr
1111
author: Blackmist
1212
ms.reviewer: bozhlin
13-
ms.date: 11/04/2022
13+
ms.date: 07/10/2024
1414
---
1515

1616
# Deploy a model to Azure Container Instances with CLI (v1)
@@ -21,12 +21,12 @@ ms.date: 11/04/2022
2121
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:
2222

2323
- 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
2525

2626
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.
2727

2828
> [!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)
3030
>
3131
> You can also refer to Azure Machine Learning - [Deploy to Local Notebook](https://github.com/Azure/MachineLearningNotebooks/tree/master/how-to-use-azureml)
3232
@@ -52,7 +52,7 @@ For information on quota and region availability for ACI, see [Quotas and region
5252

5353
## Limitations
5454

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).
5656

5757
## Deploy to ACI
5858

@@ -103,11 +103,11 @@ The entries in the `deploymentconfig.json` document map to the parameters for [A
103103
|   `memoryInGB` | `memory_gb` | The amount of memory (in GB) to allocate for this web service. Default, `0.5` |
104104
| `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) |
105105
| `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. |
107107
| `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 |
111111
| `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. |
112112

113113
The following JSON is an example deployment configuration for use with the CLI:

0 commit comments

Comments
 (0)