Skip to content

Commit e5c89fe

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into patricka-archive1.1
2 parents 468d67a + 2b29322 commit e5c89fe

34 files changed

+225
-227
lines changed

articles/aks/tutorial-kubernetes-deploy-application.md

Lines changed: 28 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,36 @@
11
---
2-
title: Kubernetes on Azure tutorial - Deploy an application
2+
title: Kubernetes on Azure tutorial - Deploy an application
33
description: In this Azure Kubernetes Service (AKS) tutorial, you deploy a multi-container application to your cluster using a custom image stored in Azure Container Registry.
44
services: container-service
55
ms.topic: tutorial
6-
ms.date: 05/24/2021
7-
6+
ms.date: 01/04/2023
87
ms.custom: mvc, devx-track-azurepowershell
98

109
#Customer intent: As a developer, I want to learn how to deploy apps to an Azure Kubernetes Service (AKS) cluster so that I can deploy and run my own applications.
1110
---
1211

1312
# Tutorial: Run applications in Azure Kubernetes Service (AKS)
1413

15-
Kubernetes provides a distributed platform for containerized applications. You build and deploy your own applications and services into a Kubernetes cluster, and let the cluster manage the availability and connectivity. In this tutorial, part four of seven, a sample application is deployed into a Kubernetes cluster. You learn how to:
14+
Kubernetes provides a distributed platform for containerized applications. You build and deploy your own applications and services into a Kubernetes cluster and let the cluster manage the availability and connectivity. In this tutorial, part four of seven, you deploy a sample application into a Kubernetes cluster. You learn how to:
1615

1716
> [!div class="checklist"]
18-
> * Update a Kubernetes manifest file
19-
> * Run an application in Kubernetes
20-
> * Test the application
17+
>
18+
> * Update a Kubernetes manifest file.
19+
> * Run an application in Kubernetes.
20+
> * Test the application.
2121
22-
In later tutorials, this application is scaled out and updated.
22+
In later tutorials, you'll scale out and update your application.
2323

24-
This quickstart assumes a basic understanding of Kubernetes concepts. For more information, see [Kubernetes core concepts for Azure Kubernetes Service (AKS)][kubernetes-concepts].
24+
This quickstart assumes you have a basic understanding of Kubernetes concepts. For more information, see [Kubernetes core concepts for Azure Kubernetes Service (AKS)][kubernetes-concepts].
2525

2626
> [!TIP]
27-
> AKS clusters can use GitOps for configuration management. This enables declarations of your cluster's state, which are pushed to source control, to be applied to the cluster automatically. To learn how to use GitOps to deploy an application with an AKS cluster, see the tutorial [Use GitOps with Flux v2][gitops-flux-tutorial] and follow the [prerequisites for Azure Kubernetes Service clusters][gitops-flux-tutorial-aks].
27+
> AKS clusters can use GitOps for configuration management. GitOp enables declarations of your cluster's state, which are pushed to source control, to be applied to the cluster automatically. To learn how to use GitOps to deploy an application with an AKS cluster, see the [prerequisites for Azure Kubernetes Service clusters][gitops-flux-tutorial-aks] in the [GitOps with Flux v2][gitops-flux-tutorial] tutorial.
2828
2929
## Before you begin
3030

31-
In previous tutorials, an application was packaged into a container image, this image was uploaded to Azure Container Registry, and a Kubernetes cluster was created.
31+
In previous tutorials, you packaged an application into a container image, uploaded the image to Azure Container Registry, and created a Kubernetes cluster.
3232

33-
To complete this tutorial, you need the pre-created `azure-vote-all-in-one-redis.yaml` Kubernetes manifest file. This file was downloaded with the application source code in a previous tutorial. Verify that you've cloned the repo, and that you have changed directories into the cloned repo. If you haven't done these steps, and would like to follow along, start with [Tutorial 1 – Create container images][aks-tutorial-prepare-app].
33+
To complete this tutorial, you need the pre-created `azure-vote-all-in-one-redis.yaml` Kubernetes manifest file. This file download was included with the application source code in a previous tutorial. Verify that you've cloned the repo and that you've changed directories into the cloned repo. If you haven't done these steps and would like to follow along, start with [Tutorial 1: Prepare an application for AKS][aks-tutorial-prepare-app].
3434

3535
### [Azure CLI](#tab/azure-cli)
3636

@@ -48,37 +48,37 @@ In these tutorials, an Azure Container Registry (ACR) instance stores the contai
4848

4949
### [Azure CLI](#tab/azure-cli)
5050

51-
Get the ACR login server name using the [az acr list][az-acr-list] command as follows:
51+
Get the ACR login server name using the [az acr list][az-acr-list] command.
5252

5353
```azurecli
5454
az acr list --resource-group myResourceGroup --query "[].{acrLoginServer:loginServer}" --output table
5555
```
5656

5757
### [Azure PowerShell](#tab/azure-powershell)
5858

59-
Get the ACR login server name using the [Get-AzContainerRegistry][get-azcontainerregistry] cmdlet as follows:
59+
Get the ACR login server name using the [Get-AzContainerRegistry][get-azcontainerregistry] cmdlet.
6060

6161
```azurepowershell
6262
(Get-AzContainerRegistry -ResourceGroupName myResourceGroup -Name <acrName>).LoginServer
6363
```
6464

6565
---
6666

67-
The sample manifest file from the git repo cloned in the first tutorial uses the images from Microsoft Container Registry (*mcr.microsoft.com*). Make sure that you're in the cloned *azure-voting-app-redis* directory, then open the manifest file with a text editor, such as `vi`:
67+
The sample manifest file from the git repo you cloned in the first tutorial uses the images from Microsoft Container Registry (*mcr.microsoft.com*). Make sure you're in the cloned *azure-voting-app-redis* directory, and then open the manifest file with a text editor, such as `vi`:
6868

6969
```console
7070
vi azure-vote-all-in-one-redis.yaml
7171
```
7272

73-
Replace *mcr.microsoft.com* with your ACR login server name. The image name is found on line 60 of the manifest file. The following example shows the default image name:
73+
Replace *mcr.microsoft.com* with your ACR login server name. You can find the image name on line 60 of the manifest file. The following example shows the default image name:
7474

7575
```yaml
7676
containers:
7777
- name: azure-vote-front
7878
image: mcr.microsoft.com/azuredocs/azure-vote-front:v1
7979
```
8080
81-
Provide your own ACR login server name so that your manifest file looks like the following example:
81+
Provide your own ACR login server name so your manifest file looks similar to the following example:
8282
8383
```yaml
8484
containers:
@@ -90,7 +90,7 @@ Save and close the file. In `vi`, use `:wq`.
9090

9191
## Deploy the application
9292

93-
To deploy your application, use the [kubectl apply][kubectl-apply] command. This command parses the manifest file and creates the defined Kubernetes objects. Specify the sample manifest file, as shown in the following example:
93+
To deploy your application, use the [`kubectl apply`][kubectl-apply] command, specifying the sample manifest file. This command parses the manifest file and creates the defined Kubernetes objects.
9494

9595
```console
9696
kubectl apply -f azure-vote-all-in-one-redis.yaml
@@ -111,13 +111,13 @@ service "azure-vote-front" created
111111

112112
When the application runs, a Kubernetes service exposes the application front end to the internet. This process can take a few minutes to complete.
113113

114-
To monitor progress, use the [kubectl get service][kubectl-get] command with the `--watch` argument.
114+
To monitor progress, use the [`kubectl get service`][kubectl-get] command with the `--watch` argument.
115115

116116
```console
117117
kubectl get service azure-vote-front --watch
118118
```
119119

120-
Initially the *EXTERNAL-IP* for the *azure-vote-front* service is shown as *pending*:
120+
Initially the *EXTERNAL-IP* for the *azure-vote-front* service shows as *pending*.
121121

122122
```output
123123
azure-vote-front LoadBalancer 10.0.34.242 <pending> 80:30676/TCP 5s
@@ -129,22 +129,23 @@ When the *EXTERNAL-IP* address changes from *pending* to an actual public IP add
129129
azure-vote-front LoadBalancer 10.0.34.242 52.179.23.131 80:30676/TCP 67s
130130
```
131131

132-
To see the application in action, open a web browser to the external IP address of your service:
132+
To see the application in action, open a web browser to the external IP address of your service.
133133

134134
:::image type="content" source="./media/container-service-kubernetes-tutorials/azure-vote.png" alt-text="Screenshot showing the container image Azure Voting App running in an AKS cluster opened in a local web browser" lightbox="./media/container-service-kubernetes-tutorials/azure-vote.png":::
135135

136-
If the application didn't load, it might be due to an authorization problem with your image registry. To view the status of your containers, use the `kubectl get pods` command. If the container images can't be pulled, see [Authenticate with Azure Container Registry from Azure Kubernetes Service](cluster-container-registry-integration.md).
136+
If the application doesn't load, it might be an authorization problem with your image registry. To view the status of your containers, use the `kubectl get pods` command. If you can't pull the container images, see [Authenticate with Azure Container Registry from Azure Kubernetes Service](cluster-container-registry-integration.md).
137137

138138
## Next steps
139139

140-
In this tutorial, a sample Azure vote application was deployed to a Kubernetes cluster in AKS. You learned how to:
140+
In this tutorial, you deployed a sample Azure vote application to a Kubernetes cluster in AKS. You learned how to:
141141

142142
> [!div class="checklist"]
143-
> * Update a Kubernetes manifest files
144-
> * Run an application in Kubernetes
145-
> * Test the application
143+
>
144+
> * Update a Kubernetes manifest file.
145+
> * Run an application in Kubernetes.
146+
> * Test the application.
146147

147-
Advance to the next tutorial to learn how to scale a Kubernetes application and the underlying Kubernetes infrastructure.
148+
In the next tutorial, you'll learn how to scale a Kubernetes application and the underlying Kubernetes infrastructure.
148149

149150
> [!div class="nextstepaction"]
150151
> [Scale Kubernetes application and infrastructure][aks-tutorial-scale]

articles/azure-monitor/app/codeless-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.reviewer: abinetabate
88

99
# What is auto-instrumentation for Azure Monitor Application Insights?
1010

11-
Auto-instrumentation collects [Application Insights](app-insights-overview.md) [telemetry](data-model.md).
11+
Auto-instrumentation quickly and easily enables [Application Insights](app-insights-overview.md) to make [telemetry](data-model.md) (metrics, requests and dependencies) available in your [Application Insights resource](create-workspace-resource.md).
1212

1313
> [!div class="checklist"]
1414
> - No code changes required

articles/cognitive-services/language-service/text-analytics-for-health/concepts/assertion-detection.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,25 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: language-service
1010
ms.topic: conceptual
11-
ms.date: 11/02/2021
11+
ms.date: 01/04/2023
1212
ms.author: jboback
1313
ms.custom: language-service-health, ignite-fall-2021
1414
---
1515

1616
# Assertion detection
1717

18-
The meaning of medical content is highly affected by modifiers, such as negative or conditional assertions which can have critical implications if misrepresented. Text Analytics for health supports three categories of assertion detection for entities in the text:
18+
The meaning of medical content is highly affected by modifiers, such as negative or conditional assertions, which can have critical implications if misrepresented. Text Analytics for health supports three categories of assertion detection for entities in the text:
1919

2020
* Certainty
2121
* Conditional
2222
* Association
2323

2424
## Assertion output
2525

26-
Text Analytics for health returns assertion modifiers, which are informative attributes assigned to medical concepts that provide deeper understanding of the concepts’ context within the text. These modifiers are divided into three categories, each focusing on a different aspect, and containing a set of mutually exclusive values. Only one value per category is assigned to each entity. The most common value for each category is the Default value. The service’s output response contains only assertion modifiers that are different from the default value.
26+
Text Analytics for health returns assertion modifiers, which are informative attributes assigned to medical concepts that provide a deeper understanding of the concepts’ context within the text. These modifiers are divided into three categories, each focusing on a different aspect and containing a set of mutually exclusive values. Only one value per category is assigned to each entity. The most common value for each category is the Default value. The service’s output response contains only assertion modifiers that are different from the default value. In other words, if no assertion is returned, the implied assertion is the default value.
2727

2828
**CERTAINTY** – provides information regarding the presence (present vs. absent) of the concept and how certain the text is regarding its presence (definite vs. possible).
29-
* **Positive** [Default]: the concept exists or happened.
29+
* **Positive** [Default]: the concept exists or has happened.
3030
* **Negative**: the concept does not exist now or never happened.
3131
* **Positive_Possible**: the concept likely exists but there is some uncertainty.
3232
* **Negative_Possible**: the concept’s existence is unlikely but there is some uncertainty.

articles/cognitive-services/language-service/text-analytics-for-health/concepts/health-entity-categories.md

Lines changed: 4 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: language-service
1010
ms.topic: conceptual
11-
ms.date: 11/02/2021
11+
ms.date: 01/04/2023
1212
ms.author: jboback
1313
ms.custom: language-service-health, ignite-fall-2021
1414
---
@@ -17,7 +17,7 @@ ms.custom: language-service-health, ignite-fall-2021
1717

1818
Text Analytics for health processes and extracts insights from unstructured medical data. The service detects and surfaces medical concepts, assigns assertions to concepts, infers semantic relations between concepts and links them to common medical ontologies.
1919

20-
Text Analytics for health detects medical concepts in the following categories.
20+
Text Analytics for health detects medical concepts that fall under the following categories.
2121

2222
## Anatomy
2323

@@ -58,7 +58,7 @@ Text Analytics for health detects medical concepts in the following categories.
5858

5959
### Entities
6060

61-
**COURSE** - Description of a change in another entity over time, such as condition progression (e.g., improvement, worsening, resolution, remission), a course of treatment or medication (e.g., increase in medication dosage).
61+
**COURSE** - Description of a change in another entity over time, such as condition progression (for example: improvement, worsening, resolution, remission), a course of treatment or medication (for example: increase in medication dosage).
6262

6363
:::image type="content" source="../media/entities/course-entity.png" alt-text="An example of a course entity." lightbox="../media/entities/course-entity.png":::
6464

@@ -178,59 +178,7 @@ Text Analytics for health detects medical concepts in the following categories.
178178
:::image type="content" source="../media/entities/treatment-entities-name.png" alt-text="An example of a treatment name entity." lightbox="../media/entities/treatment-entities-name.png":::
179179

180180

181-
## Supported Assertions
182-
183-
Assertion modifiers are divided into three categories, each one focuses on a different aspect.
184-
Each category contains a set of mutually exclusive values. Only one value per category is assigned to each entity. The most common value for each category is the Default value. The service’s output response contains only assertion modifiers that are different from the default value.
185-
186-
### Certainty
187-
188-
provides information regarding the presence (present vs. absent) of the concept and how certain the text is regarding its presence (definite vs. possible).
189-
190-
**Positive** (Default): the concept exists or happened.
191-
192-
**Negative**: the concept does not exist now or never happened.
193-
194-
:::image type="content" source="../media/entities/negative-entity.png" alt-text="An example of a negative entity." lightbox="../media/entities/negative-entity.png":::
195-
196-
**Positive_Possible**: the concept likely exists but there is some uncertainty.
197-
198-
:::image type="content" source="../media/entities/positive-possible-entity.png" alt-text="An example of a positive possible entity." lightbox="../media/entities/positive-possible-entity.png" :::
199-
200-
**Negative_Possible**: the concept’s existence is unlikely but there is some uncertainty.
201-
202-
:::image type="content" source="../media/entities/negative-possible-entity.png" alt-text="An example of a negative possible entity." lightbox="../media/entities/negative-possible-entity.png" :::
203-
204-
**Neutral_Possible**: the concept may or may not exist without a tendency to either side.
205-
206-
:::image type="content" source="../media/entities/neutral-possible-entity.png" alt-text="An example of a neutral possible entity." lightbox="../media/entities/neutral-possible-entity.png":::
207-
208-
### Conditionality
209-
210-
provides information regarding whether the existence of a concept depends on certain conditions.
211-
212-
**None** (Default): the concept is a fact and not hypothetical and does not depend on certain conditions.
213-
214-
**Hypothetical**: the concept may develop or occur in the future.
215-
216-
:::image type="content" source="../media/entities/hypothetical-entity.png" alt-text="An example of a hypothetical entity." lightbox="../media/entities/hypothetical-entity.png":::
217-
218-
**Conditional**: the concept exists or occurs only under certain conditions.
219-
220-
:::image type="content" source="../media/entities/conditional-entity.png" alt-text="An example of a conditional entity." lightbox="../media/entities/conditional-entity.png":::
221-
222-
### Association
223-
224-
describes whether the concept is associated with the subject of the text or someone else.
225-
226-
**Subject** (Default): the concept is associated with the subject of the text, usually the patient.
227-
228-
**Someone_Else**: the concept is associated with someone who is not the subject of the text.
229-
230-
:::image type="content" source="../media/entities/association-entity.png" alt-text="An example of an association entity." lightbox="../media/entities/association-entity.png":::
231-
232-
233181

234182
## Next steps
235183

236-
* [NER overview](../../named-entity-recognition/overview.md)
184+
* [How to call the Text Analytics for health](../how-to/call-api.md)

articles/cognitive-services/language-service/text-analytics-for-health/concepts/relation-extraction.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,14 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: language-service
1010
ms.topic: how-to
11-
ms.date: 11/02/2021
11+
ms.date: 01/04/2023
1212
ms.author: jboback
1313
ms.custom: language-service-health, ignite-fall-2021
1414
---
1515

1616
# Relation extraction
1717

18-
Relation extraction identifies meaningful connections between concepts mentioned in text. For example, a "time of condition" relation is found by associating a condition name with a time or between an abbreviation and the full description.
19-
20-
21-
## Relation extraction output
22-
23-
Text Analytics for health recognizes relations between different concepts, including relations between attribute and entity (for example, direction of body structure, dosage of medication) and between entities (for example, abbreviation detection).
18+
Text Analytics for health features relation extraction, which is used to identify meaningful connections between concepts, or entities, mentioned in the text. For example, a "time of condition" relation is found by associating a condition name with a time. Another example is a "dosage of medication" relation, which is found by relating an extracted medication to its extracted dosage. The following example shows how relations are expressed in the JSON output.
2419

2520
> [!NOTE]
2621
> * Relations referring to CONDITION may refer to either the DIAGNOSIS entity type or the SYMPTOM_OR_SIGN entity type.
@@ -62,7 +57,7 @@ Relation extraction output contains URI references and assigned roles of the ent
6257

6358
## Recognized relations
6459

65-
The following relations can be returned by the API.
60+
The following list presents all the recognized relations by the Text Analytics for health API.
6661

6762
**ABBREVIATION**
6863

@@ -133,3 +128,7 @@ The following relations can be returned by the API.
133128
**VALUE_OF_EXAMINATION**
134129

135130
**VARIANT_OF_GENE**
131+
132+
## Next steps
133+
134+
* [How to call the Text Analytics for health](../how-to/call-api.md)

0 commit comments

Comments
 (0)