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
Copy file name to clipboardExpand all lines: articles/ai-studio/how-to/create-azure-ai-resource.md
+12-3Lines changed: 12 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: How to create and manage an Azure AI hub resource
3
3
titleSuffix: Azure AI Studio
4
-
description: This article describes how to create and manage an Azure AI hub resource
4
+
description: This article describes how to create and manage an Azure AI hub resource.
5
5
manager: scottpolly
6
6
ms.service: azure-ai-studio
7
7
ms.custom:
@@ -23,7 +23,7 @@ In this article, you learn how to create and manage an Azure AI hub resource in
23
23
24
24
## Create an Azure AI hub resource in AI Studio
25
25
26
-
To create a new Azure AI hub resource, you need either the Owner or Contributor role on the resource group or on an existing Azure AI hub resource. If you are unable to create an Azure AI hub resource due to permissions, reach out to your administrator. If your organization is using [Azure Policy](../../governance/policy/overview.md), don't create the resource in AI Studio. Create the Azure AI hub resource [in the Azure portal](#create-a-secure-azure-ai-hub-resource-in-the-azure-portal) instead.
26
+
To create a new Azure AI hub resource, you need either the Owner or Contributor role on the resource group or on an existing Azure AI hub resource. If you're unable to create an Azure AI hub resource due to permissions, reach out to your administrator. If your organization is using [Azure Policy](../../governance/policy/overview.md), don't create the resource in AI Studio. Create the Azure AI hub resource [in the Azure portal](#create-a-secure-azure-ai-hub-resource-in-the-azure-portal) instead.
27
27
28
28
Follow these steps to create a new Azure AI hub resource in AI Studio.
29
29
@@ -32,7 +32,7 @@ Follow these steps to create a new Azure AI hub resource in AI Studio.
32
32
33
33
1. Enter your AI hub name, subscription, resource group, and location details.
34
34
35
-
1. In the **Azure OpenAI** dropdown, you can select an existing Azure OpenAI resource to bring all your deployments into AI Studio. If you do not bring one, we will create one for you.
35
+
1. In the **Azure OpenAI** dropdown, you can select an existing Azure OpenAI resource to bring all your deployments into AI Studio. If you don't bring one, we'll create one for you.
36
36
37
37
:::image type="content" source="../media/how-to/resource-create-advanced.png" alt-text="Screenshot of the Create an Azure AI hub resource wizard with the option to set basic information." lightbox="../media/how-to/resource-create-advanced.png":::
38
38
@@ -86,6 +86,7 @@ If your organization is using [Azure Policy](../../governance/policy/overview.md
86
86
## Manage your Azure AI hub resource from the Azure portal
87
87
88
88
### Azure AI hub resource keys
89
+
89
90
View your keys and endpoints for your Azure AI hub resource from the overview page within the Azure portal.
90
91
91
92
:::image type="content" source="../media/how-to/resource-manage-view-keys.png" alt-text="Screenshot of the Azure AI hub resource in the Azure portal showing the keys and endpoints." lightbox="../media/how-to/resource-manage-view-keys.png":::
@@ -124,6 +125,14 @@ For Azure AI hub resources that use CMK encryption mode, you can update the encr
124
125
125
126
:::image type="content" source="../media/how-to/resource-manage-encryption.png" alt-text="Screenshot of the Encryption page of the Azure AI hub resource in the Azure portal." lightbox="../media/how-to/resource-manage-encryption.png":::
126
127
128
+
### Update Azure Application Insights and Azure Container Registry
129
+
130
+
To use custom environments for Prompt Flow, you're required to configure an Azure Container Registry for your AI hub. To use Azure Application Insights for Prompt Flow deployments, a configured Azure Application Insights resource is required for your AI hub.
131
+
132
+
You can configure your AI hub for these resources during creation or update after creation. To update Azure Application Insights from the Azure portal, navigate to the **Properties** for your Azure AI hub resource in the Azure portal, then select **Change Application Insights**. You can also use the Azure SDK/CLI options or infrastructure-as-code templates to update both Azure Application Insights and Azure Container Registry for the AI Hub.
133
+
134
+
:::image type="content" source="../media/how-to/resource-manage-update-associated-resources.png" alt-text="Screenshot of the properties page of the Azure AI resource in the Azure portal." lightbox="../media/how-to/resource-manage-update-associated-resources.png":::
135
+
127
136
## Manage your Azure AI hub resource from the Manage tab within the AI Studio
Copy file name to clipboardExpand all lines: articles/aks/istio-deploy-addon.md
+48-13Lines changed: 48 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,23 @@ export LOCATION=<location>
29
29
30
30
The add-on requires Azure CLI version 2.57.0 or later installed. You can run `az --version` to verify version. To install or upgrade, see [Install Azure CLI][azure-cli-install].
31
31
32
-
## Install Istio add-on at the time of cluster creation
32
+
## Get available Istio add-on revisions
33
+
To find information about which Istio add-on revisions are available in a region and their compatibility with AKS cluster versions, use:
34
+
35
+
```azurecli-interactive
36
+
az aks mesh get-revisions --location <location> -o table
37
+
```
38
+
39
+
40
+
## Install Istio add-on
41
+
### Revision selection
42
+
If you enable the add-on without specifying a revision, a default supported revision is installed for you.
43
+
44
+
If you wish to specify the revision instead:
45
+
1. Use the `get-revisions` command in the [previous step](#get-available-istio-add-on-revisions) to check which revisions are available for different AKS cluster versions in a region.
46
+
1. Based on the available revisions, you can include the `--revision asm-X-Y` (ex: `--revision asm-1-20`) flag in the enable command you use for mesh installation.
47
+
48
+
### Install mesh during cluster creation
33
49
34
50
To install the Istio add-on when creating the cluster, use the `--enable-azure-service-mesh` or`--enable-asm` parameter.
35
51
@@ -42,7 +58,7 @@ az aks create \
42
58
--enable-asm
43
59
```
44
60
45
-
## Install Istio add-on for existing cluster
61
+
###Install mesh for existing cluster
46
62
47
63
The following example enables Istio add-on for an existing AKS cluster:
To automatically install sidecar to any new pods, annotate your namespaces:
105
+
To automatically install sidecar to any new pods, you will need to annotate your namespaces with the revision label corresponding to the control plane revision currently installed.
106
+
107
+
If you're unsure which revision is installed, use:
108
+
```bash
109
+
az aks show --resource-group ${RESOURCE_GROUP} --name ${CLUSTER} --query 'serviceMeshProfile.istio.revisions'
> The default `istio-injection=enabled` labeling doesn't work. Explicit versioning (`istio.io/rev=asm-1-18`) is required.
118
+
> The default `istio-injection=enabled` labeling doesn't work. Explicit versioning matching the control plane revision (ex: `istio.io/rev=asm-1-18`) is required.
97
119
120
+
For manual injection of sidecar using `istioctl kube-inject`, you need to specify extra parameters for `istioNamespace` (`-i`) and `revision` (`-r`). For example:
98
121
99
-
For manual injection of sidecar using `istioctl kube-inject`, you need to specify extra parameters for `istioNamespace` (`-i`) and `revision` (`-r`). Example:
You can either deploy the sample application provided for testing, or trigger sidecar injection for existing workloads.
128
+
129
+
### Existing applications
130
+
If you have existing applications to be added to the mesh, ensure their namespaces are labeled as in the previous step, and then restart their deployments to trigger sidecar injection:
Verify that sidecar injection succeeded by ensuring all containers are ready and looking for the `istio-proxy` container in the `kubectl describe` output, for example:
> Each pod has two containers, one of which is the Envoy sidecar injected by Istio and the other is the application container.
200
+
201
+
Confirm that all the pods have status of `Running` with 2 containers in the `READY` column. The second container (`istio-proxy`) added to each pod is the Envoy sidecar injected by Istio, and the other is the application container.
167
202
168
203
To test this sample application against ingress, check out [next-steps](#next-steps).
Copy file name to clipboardExpand all lines: articles/aks/istio-upgrade.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ The following example illustrates how to upgrade from revision `asm-1-18` to `as
32
32
1. Initiate a canary upgrade from revision `asm-1-18` to `asm-1-19` using [az aks mesh upgrade start](/cli/azure/aks/mesh#az-aks-mesh-upgrade-start):
33
33
34
34
```bash
35
-
az aks mesh upgrade start --resource-group $RESOURCE_GROUP --name $CLUSTER --revision asm-1-18
35
+
az aks mesh upgrade start --resource-group $RESOURCE_GROUP --name $CLUSTER --revision asm-1-19
36
36
```
37
37
38
38
A canary upgrade means the 1.18 control plane is deployed alongside the 1.17 control plane. They continue to coexist until you either complete or roll back the upgrade.
@@ -101,7 +101,7 @@ The following example illustrates how to upgrade from revision `asm-1-18` to `as
101
101
102
102
***Rollback the canary upgrade**: In case you observe any issues with the health of your workloads, you can roll back to the previous revision of Istio:
@@ -119,7 +119,7 @@ The following example illustrates how to upgrade from revision `asm-1-18` to `as
119
119
az aks mesh upgrade rollback --resource-group $RESOURCE_GROUP --name $CLUSTER
120
120
```
121
121
122
-
1. If [mesh configuration][meshconfig] was set up forthe revisionsin previous steps, you can now delete the ConfigMap for the revision that was removed from the cluster on completing or rolling back the upgrade.
122
+
1. If [mesh configuration][meshconfig] was previously set up for the revisions, you can now delete the ConfigMap for the revision that was removed from the cluster during complete/rollback.
123
123
124
124
> [!NOTE]
125
125
> Manually relabeling namespaces when moving them to a new revision can be tedious and error-prone. [Revision tags](https://istio.io/latest/docs/setup/upgrade/canary/#stable-revision-labels) solve this problem. Revision tags are stable identifiers that point to revisions and can be used to avoid relabeling namespaces. Rather than relabeling the namespace, a mesh operator can simply change the tag to point to a new revision. All namespaces labeled with that tag will be updated at the same time. However, note that you still need to restart the workloads to make sure the correct version of `istio-proxy` sidecars are injected.
Copy file name to clipboardExpand all lines: articles/backup/manage-azure-managed-disks.md
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,11 @@
2
2
title: Manage Azure Managed Disks
3
3
description: Learn about managing Azure Managed Disk from the Azure portal.
4
4
ms.topic: how-to
5
-
ms.date: 03/27/2023
5
+
ms.date: 03/21/2024
6
6
author: AbhishekMallick-MS
7
7
ms.author: v-abhmallick
8
8
ms.service: backup
9
-
ms.custom: engagement-fy23
9
+
ms.custom: engagement-fy24
10
10
---
11
11
12
12
# Manage Azure Managed Disks
@@ -17,9 +17,11 @@ This article explains how to manage Azure Managed Disk from the Azure portal.
17
17
18
18
The Azure Backup service creates a job for scheduled backups or if you trigger on-demand backup operation for tracking. To view the backup job status:
19
19
20
-
1. Go to the **Backup instance**screen. It shows the jobs dashboard with operation and status for the past seven days.
20
+
1. Go to the **Backup center** and select **Backup instances**.
21
21
22
-

22
+
The **Backup instances** blade shows the jobs dashboard with operation and status for the past seven days.
23
+
24
+
:::image type="content" source="./media/backup-managed-disks/jobs-dashboard.png" alt-text="Screenshot shows the jobs dashboard." lightbox="./media/backup-managed-disks/jobs-dashboard.png":::
23
25
24
26
1. To view the status of the backup operation, select **View all** to show ongoing and past jobs of this backup instance.
25
27
@@ -33,7 +35,9 @@ The Azure Backup service creates a job for scheduled backups or if you trigger o
33
35
34
36
After you trigger the restore operation, the backup service creates a job for tracking. Azure Backup displays notifications about the job in the portal. To view the restore job progress:
35
37
36
-
1. Go to the **Backup instance** screen. It shows the jobs dashboard with operation and status for the past seven days.
38
+
1. Go to the **Backup center** and select **Backup instances**
39
+
40
+
The **Backup instances** blade shows the jobs dashboard with operation and status for the past seven days.
37
41
38
42

The following table lists the supported configurations when authenticating to __Azure Container Registry__, depending on the authentication method and the __public network access__ workspace flag.
40
+
The following table lists the support matrix when authenticating to __Azure Container Registry__, depending on the authentication method and the __public network access__ workspace flag.
41
41
42
42
| Authentication method | Public network access</br>disabled | Public network access</br>enabled |
0 commit comments