Skip to content

Commit 7f91a34

Browse files
committed
Updates for freshness
1 parent 2b44f7f commit 7f91a34

File tree

9 files changed

+17
-17
lines changed

9 files changed

+17
-17
lines changed

articles/cognitive-services/Anomaly-Detector/How-to/deploy-anomaly-detection-on-container-instances.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: anomaly-detector
1010
ms.topic: conceptual
11-
ms.date: 7/5/2019
11+
ms.date: 01/23/2020
1212
ms.author: dapine
1313
---
1414

articles/cognitive-services/Face/Face-API-How-to-Topics/deploy-face-container-on-container-instances.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: face-api
1010
ms.topic: conceptual
11-
ms.date: 7/5/2019
11+
ms.date: 01/23/2020
1212
ms.author: dapine
1313
---
1414

articles/cognitive-services/Speech-Service/deploy-speech-on-container-instances.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: speech-service
1010
ms.topic: conceptual
11-
ms.date: 7/5/2019
11+
ms.date: 01/23/2020
1212
ms.author: dapine
1313
---
1414

articles/cognitive-services/containers/azure-container-instance-recipe.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ author: IEvangelist
77
manager: nitinme
88
ms.custom: seodec18
99
ms.service: cognitive-services
10-
ms.topic: conceptual
11-
ms.date: 06/26/2019
10+
ms.topic: conceptual
11+
ms.date: 01/23/2020
1212
ms.author: dapine
1313
#As a potential customer, I want to know more about how Cognitive Services provides and supports Docker containers for each service.
1414

@@ -17,19 +17,19 @@ ms.author: dapine
1717

1818
# Deploy and run container on Azure Container Instance
1919

20-
With the following steps, scale Azure Cognitive Services applications in the cloud easily with Azure [Container Instance](https://docs.microsoft.com/azure/container-instances/). This helps you focus on building your applications instead of managing the infrastructure.
20+
With the following steps, scale Azure Cognitive Services applications in the cloud easily with Azure [Container Instances](https://docs.microsoft.com/azure/container-instances/). Containerization helps you focus on building your applications instead of managing the infrastructure. For more information on using containers, see [features and benefits](../cognitive-services-container-support.md#features-and-benefits).
2121

2222
## Prerequisites
2323

24-
This solution works with any Cognitive Services container. The Cognitive Service resource must be created in the Azure portal before using this recipe. Each Cognitive Service that supports containers has a "How to install" document specifically for installing and configuring the service for a container. Because some services require a file or set of files as input for the container, it is important that you understand and have used the container successfully before using this solution.
24+
The recipe works with any Cognitive Services container. The Cognitive Service resource must be created in the Azure portal before using the recipe. Each Cognitive Service that supports containers has a "How to install" document specifically for installing and configuring the service for a container. Some services require a file or set of files as input for the container, it is important that you understand and have used the container successfully before using this solution.
2525

2626
* A Cognitive Service resource, created in Azure portal.
2727
* Cognitive Service **endpoint URL** - review your specific service's "How to install" for the container, to find where the endpoint URL is from within the Azure portal, and what a correct example of the URL looks like. The exact format can change from service to service.
2828
* Cognitive Service **key** - the keys are on the **Keys** page for the Azure resource. You only need one of the two keys. The key is a string of 32 alpha-numeric characters.
2929
* A single Cognitive Services Container on your local host (your computer). Make sure you can:
3030
* Pull down the image with a `docker pull` command.
3131
* Run the local container successfully with all required configuration settings with a `docker run` command.
32-
* Call the container's endpoint, getting a response of 2xx and a JSON response back.
32+
* Call the container's endpoint, getting a response of HTTP 2xx and a JSON response back.
3333

3434
All variables in angle brackets, `<>`, need to be replaced with your own values. This replacement includes the angle brackets.
3535

articles/cognitive-services/containers/azure-kubernetes-recipe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: text-analytics
1010
ms.topic: conceptual
11-
ms.date: 06/26/2019
11+
ms.date: 01/23/2020
1212
ms.author: dapine
1313
---
1414

@@ -31,7 +31,7 @@ This procedure requires several tools that must be installed and run locally. Do
3131

3232
## Running the sample
3333

34-
This procedure loads and runs the Cognitive Services Container sample for language detection. The sample has two containers, one for the client application and one for the Cognitive Services container. You need to push both these images to your own Azure Container Registry. Once they are on your own registry, create an Azure Kubernetes Service to access these images and run the containers. When the containers are running, use the **kubectl** CLI to watch the containers performance. Access the client application with an HTTP request and see the results.
34+
This procedure loads and runs the Cognitive Services Container sample for language detection. The sample has two containers, one for the client application and one for the Cognitive Services container. We'll push both of these images to the Azure Container Registry. Once they are on your own registry, create an Azure Kubernetes Service to access these images and run the containers. When the containers are running, use the **kubectl** CLI to watch the containers performance. Access the client application with an HTTP request and see the results.
3535

3636
![Conceptual idea of running sample containers](../text-analytics/media/how-tos/container-instance-sample/containers.png)
3737

articles/cognitive-services/containers/container-reuse-recipe.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
title: Recipes for Docker containers
33
titleSuffix: Azure Cognitive Services
4-
description: Learn how to build, test and store containers with some or all of your configuration settings for deployment and reuse.
4+
description: Learn how to build, test, and store containers with some or all of your configuration settings for deployment and reuse.
55
services: cognitive-services
66
author: IEvangelist
77
manager: nitinme
88
ms.custom: seodec18
99
ms.service: cognitive-services
10-
ms.topic: conceptual
11-
ms.date: 06/26/2019
10+
ms.topic: conceptual
11+
ms.date: 01/23/2020
1212
ms.author: dapine
1313
#As a potential customer, I want to know how to configure containers so I can reuse them.
1414

articles/cognitive-services/containers/docker-compose-recipe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ author: IEvangelist
77
manager: nitinme
88
ms.custom: seodec18
99
ms.service: cognitive-services
10-
ms.topic: conceptual
11-
ms.date: 06/26/2019
10+
ms.topic: conceptual
11+
ms.date: 01/23/2020
1212
ms.author: dapine
1313
#As a potential customer, I want to know how to configure containers so I can reuse them.
1414

articles/cognitive-services/form-recognizer/deploy-form-recognizer-on-container-instances.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: forms-recognizer
1010
ms.topic: conceptual
11-
ms.date: 7/5/2019
11+
ms.date: 01/23/2020
1212
ms.author: dapine
1313
---
1414

articles/cognitive-services/immersive-reader/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ metadata:
1313
ms.collection: collection
1414
author: IEvangelist
1515
ms.author: dapine
16-
ms.date: 08/29/2019
16+
ms.date: 01/23/2020
1717

1818
# linkListType: architecture | concept | deploy | download | get-started | how-to-guide | learn | overview | quickstart | reference | tutorial | video | whats-new
1919

0 commit comments

Comments
 (0)